| Risk Level | Number of Alerts |
|---|---|
|
High
|
2
|
|
Medium
|
12
|
|
Low
|
9
|
|
Informational
|
16
|
|
High |
Cloud Metadata Potentially Exposed |
|---|---|
| Description |
The Cloud Metadata Attack attempts to abuse a misconfigured NGINX server in order to access the instance metadata maintained by cloud service providers such as AWS, GCP and Azure.
All of these providers provide metadata via an internal unroutable IP address '169.254.169.254' - this can be exposed by incorrectly configured NGINX servers and accessed by using this IP address in the Host header field.
|
| URL | http://localhost:3000/latest/meta-data/ |
| Method | GET |
| Parameter | |
| Attack | 169.254.169.254 |
| Evidence | |
| Other Info | Based on the successful response status code cloud metadata may have been returned in the response. Check the response data to see if any cloud metadata has been returned. The meta data returned can include information that would allow an attacker to completely compromise the system. |
| Instances | 1 |
| Solution |
Do not trust any user data in NGINX configs. In this case it is probably the use of the $host variable which is set from the 'Host' header and can be controlled by an attacker.
|
| Reference | https://www.nginx.com/blog/trust-no-one-perils-of-trusting-user-input/ |
| CWE Id | |
| WASC Id | |
| Plugin Id | 90034 |
|
High |
Source Code Disclosure - File Inclusion |
|---|---|
| Description |
The Path Traversal attack technique allows an attacker access to files, directories, and commands that potentially reside outside the web document root directory. An attacker may manipulate a URL in such a way that the web site will execute or reveal the contents of arbitrary files anywhere on the web server. Any device that exposes an HTTP-based interface is potentially vulnerable to Path Traversal.
Most web sites restrict user access to a specific portion of the file-system, typically called the "web document root" or "CGI root" directory. These directories contain the files intended for user access and the executable necessary to drive web application functionality. To access files or execute commands anywhere on the file-system, Path Traversal attacks will utilize the ability of special-characters sequences.
The most basic Path Traversal attack uses the "../" special-character sequence to alter the resource location requested in the URL. Although most popular web servers will prevent this technique from escaping the web document root, alternate encodings of the "../" sequence may help bypass the security filters. These method variations include valid and invalid Unicode-encoding ("..%u2216" or "..%c0%af") of the forward slash character, backslash characters ("..\") on Windows-based servers, URL encoded characters "%2e%2e%2f"), and double URL encoding ("..%255c") of the backslash character.
Even if the web server properly restricts Path Traversal attempts in the URL path, a web application itself may still be vulnerable due to improper handling of user-supplied input. This is a common problem of web applications that use template mechanisms or load static text from files. In variations of the attack, the original URL parameter value is substituted with the file name of one of the web application's dynamic scripts. Consequently, the results can reveal source code because the file is interpreted as text instead of an executable script. These techniques often employ additional special characters such as the dot (".") to reveal the listing of the current working directory, or "%00" NULL characters in order to bypass rudimentary file extension checks.
|
| URL | http://localhost/api/Challenges/?name=Score%20Board |
| Method | GET |
| Parameter | name |
| Attack | ../ |
| Evidence | |
| Other Info | The output for the source code filename [../] differs sufficiently from that of the random parameter [rewmczmbmomztwomletzyqfoeslbcngholqxrd], at [4%], compared to a threshold of [75%] |
| URL | http://localhost/rest/products/search?q= |
| Method | GET |
| Parameter | q |
| Attack | ../search |
| Evidence | |
| Other Info | The output for the source code filename [../search] differs sufficiently from that of the random parameter [rewmczmbmomztwomletzyqfoeslbcngholqxrd], at [4%], compared to a threshold of [75%] |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntKnM&sid=lp91BNQi2FBKdcbsAAEi |
| Method | GET |
| Parameter | transport |
| Attack | ../ |
| Evidence | |
| Other Info | The output for the source code filename [../] differs sufficiently from that of the random parameter [rewmczmbmomztwomletzyqfoeslbcngholqxrd], at [5%], compared to a threshold of [75%] |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntLBn |
| Method | GET |
| Parameter | transport |
| Attack | ../ |
| Evidence | |
| Other Info | The output for the source code filename [../] differs sufficiently from that of the random parameter [rewmczmbmomztwomletzyqfoeslbcngholqxrd], at [5%], compared to a threshold of [75%] |
| URL | http://localhost/socket.io/?EIO=4&transport=websocket&sid=_HTNywfDgF4DlKk7AABd |
| Method | GET |
| Parameter | transport |
| Attack | ../ |
| Evidence | |
| Other Info | The output for the source code filename [../] differs sufficiently from that of the random parameter [rewmczmbmomztwomletzyqfoeslbcngholqxrd], at [5%], compared to a threshold of [75%] |
| Instances | 5 |
| Solution |
Assume all input is malicious. Use an "accept known good" input validation strategy, i.e., use an allow list of acceptable inputs that strictly conform to specifications. Reject any input that does not strictly conform to specifications, or transform it into something that does. Do not rely exclusively on looking for malicious or malformed inputs (i.e., do not rely on a deny list). However, deny lists can be useful for detecting potential attacks or determining which inputs are so malformed that they should be rejected outright.
When performing input validation, consider all potentially relevant properties, including length, type of input, the full range of acceptable values, missing or extra inputs, syntax, consistency across related fields, and conformance to business rules. As an example of business rule logic, "boat" may be syntactically valid because it only contains alphanumeric characters, but it is not valid if you are expecting colors such as "red" or "blue."
For filenames, use stringent allow lists that limit the character set to be used. If feasible, only allow a single "." character in the filename to avoid weaknesses, and exclude directory separators such as "/". Use an allow list of allowable file extensions.
Warning: if you attempt to cleanse your data, then do so that the end result is not in the form that can be dangerous. A sanitizing mechanism can remove characters such as '.' and ';' which may be required for some exploits. An attacker can try to fool the sanitizing mechanism into "cleaning" data into a dangerous form. Suppose the attacker injects a '.' inside a filename (e.g. "sensi.tiveFile") and the sanitizing mechanism removes the character resulting in the valid filename, "sensitiveFile". If the input data are now assumed to be safe, then the file may be compromised.
Inputs should be decoded and canonicalized to the application's current internal representation before being validated. Make sure that your application does not decode the same input twice. Such errors could be used to bypass allow list schemes by introducing dangerous inputs after they have been checked.
Use a built-in path canonicalization function (such as realpath() in C) that produces the canonical version of the pathname, which effectively removes ".." sequences and symbolic links.
Run your code using the lowest privileges that are required to accomplish the necessary tasks. If possible, create isolated accounts with limited privileges that are only used for a single task. That way, a successful attack will not immediately give the attacker access to the rest of the software or its environment. For example, database applications rarely need to run as the database administrator, especially in day-to-day operations.
When the set of acceptable objects, such as filenames or URLs, is limited or known, create a mapping from a set of fixed input values (such as numeric IDs) to the actual filenames or URLs, and reject all other inputs.
Run your code in a "jail" or similar sandbox environment that enforces strict boundaries between the process and the operating system. This may effectively restrict which files can be accessed in a particular directory or which commands can be executed by your software.
OS-level examples include the Unix chroot jail, AppArmor, and SELinux. In general, managed code may provide some protection. For example, java.io.FilePermission in the Java SecurityManager allows you to specify restrictions on file operations.
This may not be a feasible solution, and it only limits the impact to the operating system; the rest of your application may still be subject to compromise.
|
| Reference |
https://owasp.org/www-community/attacks/Path_Traversal
https://cwe.mitre.org/data/definitions/22.html |
| CWE Id | 541 |
| WASC Id | 33 |
| Plugin Id | 43 |
|
Medium |
Backup File Disclosure |
|---|---|
| Description |
A backup of the file was disclosed by the web server
|
| URL | http://localhost:3000/ftp/1-acquisitions.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/1-acquisitions.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/1-acquisitions.md] |
| URL | http://localhost:3000/ftp/1-announcement_encrypted.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/1-announcement_encrypted.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/1-announcement_encrypted.md] |
| URL | http://localhost:3000/ftp/1-legal.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/1-legal.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/1-legal.md] |
| URL | http://localhost:3000/ftp/1_acquisitions.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/1_acquisitions.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/1_acquisitions.md] |
| URL | http://localhost:3000/ftp/1_announcement_encrypted.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/1_announcement_encrypted.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/1_announcement_encrypted.md] |
| URL | http://localhost:3000/ftp/1_legal.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/1_legal.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/1_legal.md] |
| URL | http://localhost:3000/ftp/1acquisitions.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/1acquisitions.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/1acquisitions.md] |
| URL | http://localhost:3000/ftp/1announcement_encrypted.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/1announcement_encrypted.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/1announcement_encrypted.md] |
| URL | http://localhost:3000/ftp/1legal.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/1legal.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/1legal.md] |
| URL | http://localhost:3000/ftp/2-acquisitions.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/2-acquisitions.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/2-acquisitions.md] |
| URL | http://localhost:3000/ftp/2-announcement_encrypted.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/2-announcement_encrypted.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/2-announcement_encrypted.md] |
| URL | http://localhost:3000/ftp/2-legal.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/2-legal.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/2-legal.md] |
| URL | http://localhost:3000/ftp/2_acquisitions.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/2_acquisitions.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/2_acquisitions.md] |
| URL | http://localhost:3000/ftp/2_announcement_encrypted.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/2_announcement_encrypted.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/2_announcement_encrypted.md] |
| URL | http://localhost:3000/ftp/2_legal.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/2_legal.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/2_legal.md] |
| URL | http://localhost:3000/ftp/2acquisitions.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/2acquisitions.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/2acquisitions.md] |
| URL | http://localhost:3000/ftp/2announcement_encrypted.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/2announcement_encrypted.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/2announcement_encrypted.md] |
| URL | http://localhost:3000/ftp/2legal.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/2legal.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/2legal.md] |
| URL | http://localhost:3000/ftp/acquisitions%20(2nd%20copy).md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions%20(2nd%20copy).md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions%20(2nd%20copy).md] |
| URL | http://localhost:3000/ftp/acquisitions%20(3rd%20copy).md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions%20(3rd%20copy).md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions%20(3rd%20copy).md] |
| URL | http://localhost:3000/ftp/acquisitions%20(4th%20copy).md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions%20(4th%20copy).md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions%20(4th%20copy).md] |
| URL | http://localhost:3000/ftp/acquisitions%20(another%20copy).md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions%20(another%20copy).md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions%20(another%20copy).md] |
| URL | http://localhost:3000/ftp/acquisitions%20(copy).md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions%20(copy).md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions%20(copy).md] |
| URL | http://localhost:3000/ftp/acquisitions%20(fourth%20copy).md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions%20(fourth%20copy).md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions%20(fourth%20copy).md] |
| URL | http://localhost:3000/ftp/acquisitions%20(second%20copy).md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions%20(second%20copy).md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions%20(second%20copy).md] |
| URL | http://localhost:3000/ftp/acquisitions%20(third%20copy).md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions%20(third%20copy).md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions%20(third%20copy).md] |
| URL | http://localhost:3000/ftp/acquisitions%20-%20Copy%20(2).md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions%20-%20Copy%20(2).md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions%20-%20Copy%20(2).md] |
| URL | http://localhost:3000/ftp/acquisitions%20-%20Copy%20(3).md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions%20-%20Copy%20(3).md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions%20-%20Copy%20(3).md] |
| URL | http://localhost:3000/ftp/acquisitions%20-%20Copy%20-%20Copy.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions%20-%20Copy%20-%20Copy.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions%20-%20Copy%20-%20Copy.md] |
| URL | http://localhost:3000/ftp/acquisitions%20-%20Copy.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions%20-%20Copy.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions%20-%20Copy.md] |
| URL | http://localhost:3000/ftp/acquisitions(2nd%20copy).md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions(2nd%20copy).md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions(2nd%20copy).md] |
| URL | http://localhost:3000/ftp/acquisitions(3rd%20copy).md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions(3rd%20copy).md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions(3rd%20copy).md] |
| URL | http://localhost:3000/ftp/acquisitions(4th%20copy).md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions(4th%20copy).md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions(4th%20copy).md] |
| URL | http://localhost:3000/ftp/acquisitions(another%20copy).md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions(another%20copy).md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions(another%20copy).md] |
| URL | http://localhost:3000/ftp/acquisitions(copy).md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions(copy).md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions(copy).md] |
| URL | http://localhost:3000/ftp/acquisitions(fourth%20copy).md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions(fourth%20copy).md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions(fourth%20copy).md] |
| URL | http://localhost:3000/ftp/acquisitions(second%20copy).md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions(second%20copy).md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions(second%20copy).md] |
| URL | http://localhost:3000/ftp/acquisitions(third%20copy).md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions(third%20copy).md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions(third%20copy).md] |
| URL | http://localhost:3000/ftp/acquisitions-1.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions-1.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions-1.md] |
| URL | http://localhost:3000/ftp/acquisitions-2.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions-2.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions-2.md] |
| URL | http://localhost:3000/ftp/acquisitions-backup.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions-backup.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions-backup.md] |
| URL | http://localhost:3000/ftp/acquisitions-bak.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions-bak.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions-bak.md] |
| URL | http://localhost:3000/ftp/acquisitions-old.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions-old.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions-old.md] |
| URL | http://localhost:3000/ftp/acquisitions.0.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.0.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.0.md] |
| URL | http://localhost:3000/ftp/acquisitions.1.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.1.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.1.md] |
| URL | http://localhost:3000/ftp/acquisitions.2.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.2.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.2.md] |
| URL | http://localhost:3000/ftp/acquisitions.3.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.3.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.3.md] |
| URL | http://localhost:3000/ftp/acquisitions.7z.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.7z.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.7z.md] |
| URL | http://localhost:3000/ftp/acquisitions.a.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.a.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.a.md] |
| URL | http://localhost:3000/ftp/acquisitions.ace.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.ace.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.ace.md] |
| URL | http://localhost:3000/ftp/acquisitions.afa.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.afa.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.afa.md] |
| URL | http://localhost:3000/ftp/acquisitions.alz.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.alz.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.alz.md] |
| URL | http://localhost:3000/ftp/acquisitions.apk.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.apk.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.apk.md] |
| URL | http://localhost:3000/ftp/acquisitions.ar.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.ar.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.ar.md] |
| URL | http://localhost:3000/ftp/acquisitions.arc.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.arc.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.arc.md] |
| URL | http://localhost:3000/ftp/acquisitions.arj.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.arj.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.arj.md] |
| URL | http://localhost:3000/ftp/acquisitions.ba.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.ba.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.ba.md] |
| URL | http://localhost:3000/ftp/acquisitions.bac.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.bac.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.bac.md] |
| URL | http://localhost:3000/ftp/acquisitions.backup.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.backup.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.backup.md] |
| URL | http://localhost:3000/ftp/acquisitions.bak.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.bak.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.bak.md] |
| URL | http://localhost:3000/ftp/acquisitions.bh.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.bh.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.bh.md] |
| URL | http://localhost:3000/ftp/acquisitions.bz2.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.bz2.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.bz2.md] |
| URL | http://localhost:3000/ftp/acquisitions.cab.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.cab.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.cab.md] |
| URL | http://localhost:3000/ftp/acquisitions.cbz.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.cbz.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.cbz.md] |
| URL | http://localhost:3000/ftp/acquisitions.cfs.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.cfs.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.cfs.md] |
| URL | http://localhost:3000/ftp/acquisitions.cpio.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.cpio.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.cpio.md] |
| URL | http://localhost:3000/ftp/acquisitions.cpt.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.cpt.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.cpt.md] |
| URL | http://localhost:3000/ftp/acquisitions.dar.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.dar.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.dar.md] |
| URL | http://localhost:3000/ftp/acquisitions.dd.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.dd.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.dd.md] |
| URL | http://localhost:3000/ftp/acquisitions.dev.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.dev.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.dev.md] |
| URL | http://localhost:3000/ftp/acquisitions.dgc.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.dgc.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.dgc.md] |
| URL | http://localhost:3000/ftp/acquisitions.dmg.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.dmg.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.dmg.md] |
| URL | http://localhost:3000/ftp/acquisitions.ear.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.ear.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.ear.md] |
| URL | http://localhost:3000/ftp/acquisitions.exe.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.exe.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.exe.md] |
| URL | http://localhost:3000/ftp/acquisitions.f.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.f.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.f.md] |
| URL | http://localhost:3000/ftp/acquisitions.gca.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.gca.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.gca.md] |
| URL | http://localhost:3000/ftp/acquisitions.gz.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.gz.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.gz.md] |
| URL | http://localhost:3000/ftp/acquisitions.ha.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.ha.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.ha.md] |
| URL | http://localhost:3000/ftp/acquisitions.hki.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.hki.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.hki.md] |
| URL | http://localhost:3000/ftp/acquisitions.ice.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.ice.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.ice.md] |
| URL | http://localhost:3000/ftp/acquisitions.inc.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.inc.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.inc.md] |
| URL | http://localhost:3000/ftp/acquisitions.include.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.include.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.include.md] |
| URL | http://localhost:3000/ftp/acquisitions.iso.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.iso.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.iso.md] |
| URL | http://localhost:3000/ftp/acquisitions.j.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.j.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.j.md] |
| URL | http://localhost:3000/ftp/acquisitions.jar.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.jar.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.jar.md] |
| URL | http://localhost:3000/ftp/acquisitions.kgb.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.kgb.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.kgb.md] |
| URL | http://localhost:3000/ftp/acquisitions.lbr.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.lbr.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.lbr.md] |
| URL | http://localhost:3000/ftp/acquisitions.lha.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.lha.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.lha.md] |
| URL | http://localhost:3000/ftp/acquisitions.lhz.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.lhz.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.lhz.md] |
| URL | http://localhost:3000/ftp/acquisitions.log.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.log.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.log.md] |
| URL | http://localhost:3000/ftp/acquisitions.lz.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.lz.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.lz.md] |
| URL | http://localhost:3000/ftp/acquisitions.lzk.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.lzk.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.lzk.md] |
| URL | http://localhost:3000/ftp/acquisitions.lzma.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.lzma.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.lzma.md] |
| URL | http://localhost:3000/ftp/acquisitions.lzo.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.lzo.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.lzo.md] |
| URL | http://localhost:3000/ftp/acquisitions.mar.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.mar.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.mar.md] |
| URL | http://localhost:3000/ftp/acquisitions.old.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.old.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.old.md] |
| URL | http://localhost:3000/ftp/acquisitions.orig.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.orig.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.orig.md] |
| URL | http://localhost:3000/ftp/acquisitions.pak.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.pak.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.pak.md] |
| URL | http://localhost:3000/ftp/acquisitions.paq6.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.paq6.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.paq6.md] |
| URL | http://localhost:3000/ftp/acquisitions.paq7.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.paq7.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.paq7.md] |
| URL | http://localhost:3000/ftp/acquisitions.paq8.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.paq8.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.paq8.md] |
| URL | http://localhost:3000/ftp/acquisitions.partimg..md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.partimg..md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.partimg..md] |
| URL | http://localhost:3000/ftp/acquisitions.pea.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.pea.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.pea.md] |
| URL | http://localhost:3000/ftp/acquisitions.pim.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.pim.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.pim.md] |
| URL | http://localhost:3000/ftp/acquisitions.pit.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.pit.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.pit.md] |
| URL | http://localhost:3000/ftp/acquisitions.qda.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.qda.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.qda.md] |
| URL | http://localhost:3000/ftp/acquisitions.rar.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.rar.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.rar.md] |
| URL | http://localhost:3000/ftp/acquisitions.rk.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.rk.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.rk.md] |
| URL | http://localhost:3000/ftp/acquisitions.rz.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.rz.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.rz.md] |
| URL | http://localhost:3000/ftp/acquisitions.s7z.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.s7z.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.s7z.md] |
| URL | http://localhost:3000/ftp/acquisitions.sda.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.sda.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.sda.md] |
| URL | http://localhost:3000/ftp/acquisitions.sea.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.sea.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.sea.md] |
| URL | http://localhost:3000/ftp/acquisitions.sen.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.sen.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.sen.md] |
| URL | http://localhost:3000/ftp/acquisitions.sfark.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.sfark.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.sfark.md] |
| URL | http://localhost:3000/ftp/acquisitions.sfx.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.sfx.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.sfx.md] |
| URL | http://localhost:3000/ftp/acquisitions.shar.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.shar.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.shar.md] |
| URL | http://localhost:3000/ftp/acquisitions.sit.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.sit.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.sit.md] |
| URL | http://localhost:3000/ftp/acquisitions.sitx.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.sitx.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.sitx.md] |
| URL | http://localhost:3000/ftp/acquisitions.sqx.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.sqx.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.sqx.md] |
| URL | http://localhost:3000/ftp/acquisitions.src.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.src.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.src.md] |
| URL | http://localhost:3000/ftp/acquisitions.swp.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.swp.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.swp.md] |
| URL | http://localhost:3000/ftp/acquisitions.tar.7z.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.tar.7z.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.tar.7z.md] |
| URL | http://localhost:3000/ftp/acquisitions.tar.bz2.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.tar.bz2.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.tar.bz2.md] |
| URL | http://localhost:3000/ftp/acquisitions.tar.gz.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.tar.gz.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.tar.gz.md] |
| URL | http://localhost:3000/ftp/acquisitions.tar.lzma.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.tar.lzma.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.tar.lzma.md] |
| URL | http://localhost:3000/ftp/acquisitions.tar.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.tar.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.tar.md] |
| URL | http://localhost:3000/ftp/acquisitions.tar.xz.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.tar.xz.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.tar.xz.md] |
| URL | http://localhost:3000/ftp/acquisitions.tar.z.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.tar.z.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.tar.z.md] |
| URL | http://localhost:3000/ftp/acquisitions.tbz2.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.tbz2.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.tbz2.md] |
| URL | http://localhost:3000/ftp/acquisitions.tgz.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.tgz.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.tgz.md] |
| URL | http://localhost:3000/ftp/acquisitions.tlz.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.tlz.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.tlz.md] |
| URL | http://localhost:3000/ftp/acquisitions.tmp.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.tmp.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.tmp.md] |
| URL | http://localhost:3000/ftp/acquisitions.uc.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.uc.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.uc.md] |
| URL | http://localhost:3000/ftp/acquisitions.uc0.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.uc0.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.uc0.md] |
| URL | http://localhost:3000/ftp/acquisitions.uc2.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.uc2.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.uc2.md] |
| URL | http://localhost:3000/ftp/acquisitions.uca.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.uca.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.uca.md] |
| URL | http://localhost:3000/ftp/acquisitions.ucn.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.ucn.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.ucn.md] |
| URL | http://localhost:3000/ftp/acquisitions.ue2.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.ue2.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.ue2.md] |
| URL | http://localhost:3000/ftp/acquisitions.uha.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.uha.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.uha.md] |
| URL | http://localhost:3000/ftp/acquisitions.ur2.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.ur2.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.ur2.md] |
| URL | http://localhost:3000/ftp/acquisitions.war.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.war.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.war.md] |
| URL | http://localhost:3000/ftp/acquisitions.wim.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.wim.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.wim.md] |
| URL | http://localhost:3000/ftp/acquisitions.xar.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.xar.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.xar.md] |
| URL | http://localhost:3000/ftp/acquisitions.xp3.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.xp3.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.xp3.md] |
| URL | http://localhost:3000/ftp/acquisitions.xz.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.xz.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.xz.md] |
| URL | http://localhost:3000/ftp/acquisitions.yz1.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.yz1.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.yz1.md] |
| URL | http://localhost:3000/ftp/acquisitions.z.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.z.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.z.md] |
| URL | http://localhost:3000/ftp/acquisitions.zip.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.zip.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.zip.md] |
| URL | http://localhost:3000/ftp/acquisitions.zipx.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.zipx.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.zipx.md] |
| URL | http://localhost:3000/ftp/acquisitions.zoo.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.zoo.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.zoo.md] |
| URL | http://localhost:3000/ftp/acquisitions.zpaq.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.zpaq.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.zpaq.md] |
| URL | http://localhost:3000/ftp/acquisitions.zz.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.zz.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.zz.md] |
| URL | http://localhost:3000/ftp/acquisitions.~bk.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions.~bk.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions.~bk.md] |
| URL | http://localhost:3000/ftp/acquisitions1.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions1.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions1.md] |
| URL | http://localhost:3000/ftp/acquisitions2.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions2.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions2.md] |
| URL | http://localhost:3000/ftp/acquisitions_1.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions_1.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions_1.md] |
| URL | http://localhost:3000/ftp/acquisitions_2.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions_2.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions_2.md] |
| URL | http://localhost:3000/ftp/acquisitions_a.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions_a.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions_a.md] |
| URL | http://localhost:3000/ftp/acquisitions_b.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions_b.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions_b.md] |
| URL | http://localhost:3000/ftp/acquisitions_backup.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions_backup.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions_backup.md] |
| URL | http://localhost:3000/ftp/acquisitions_bak.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions_bak.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions_bak.md] |
| URL | http://localhost:3000/ftp/acquisitions_c.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions_c.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions_c.md] |
| URL | http://localhost:3000/ftp/acquisitions_d.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions_d.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions_d.md] |
| URL | http://localhost:3000/ftp/acquisitions_e.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions_e.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions_e.md] |
| URL | http://localhost:3000/ftp/acquisitions_f.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions_f.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions_f.md] |
| URL | http://localhost:3000/ftp/acquisitions_inc.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions_inc.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions_inc.md] |
| URL | http://localhost:3000/ftp/acquisitions_old.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions_old.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions_old.md] |
| URL | http://localhost:3000/ftp/acquisitions_x.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions_x.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions_x.md] |
| URL | http://localhost:3000/ftp/acquisitionsa.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitionsa.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitionsa.md] |
| URL | http://localhost:3000/ftp/acquisitionsb.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitionsb.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitionsb.md] |
| URL | http://localhost:3000/ftp/acquisitionsbackup.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitionsbackup.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitionsbackup.md] |
| URL | http://localhost:3000/ftp/acquisitionsbak.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitionsbak.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitionsbak.md] |
| URL | http://localhost:3000/ftp/acquisitionsc.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitionsc.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitionsc.md] |
| URL | http://localhost:3000/ftp/acquisitionsd.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitionsd.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitionsd.md] |
| URL | http://localhost:3000/ftp/acquisitionse.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitionse.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitionse.md] |
| URL | http://localhost:3000/ftp/acquisitionsf.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitionsf.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitionsf.md] |
| URL | http://localhost:3000/ftp/acquisitionsinc.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitionsinc.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitionsinc.md] |
| URL | http://localhost:3000/ftp/acquisitionsold.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitionsold.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitionsold.md] |
| URL | http://localhost:3000/ftp/acquisitionss.xz.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitionss.xz.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitionss.xz.md] |
| URL | http://localhost:3000/ftp/acquisitionsx.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitionsx.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitionsx.md] |
| URL | http://localhost:3000/ftp/acquisitions~.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/acquisitions~.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/acquisitions~.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted%20(2nd%20copy).md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted%20(2nd%20copy).md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted%20(2nd%20copy).md] |
| URL | http://localhost:3000/ftp/announcement_encrypted%20(3rd%20copy).md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted%20(3rd%20copy).md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted%20(3rd%20copy).md] |
| URL | http://localhost:3000/ftp/announcement_encrypted%20(4th%20copy).md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted%20(4th%20copy).md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted%20(4th%20copy).md] |
| URL | http://localhost:3000/ftp/announcement_encrypted%20(another%20copy).md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted%20(another%20copy).md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted%20(another%20copy).md] |
| URL | http://localhost:3000/ftp/announcement_encrypted%20(copy).md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted%20(copy).md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted%20(copy).md] |
| URL | http://localhost:3000/ftp/announcement_encrypted%20(fourth%20copy).md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted%20(fourth%20copy).md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted%20(fourth%20copy).md] |
| URL | http://localhost:3000/ftp/announcement_encrypted%20(second%20copy).md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted%20(second%20copy).md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted%20(second%20copy).md] |
| URL | http://localhost:3000/ftp/announcement_encrypted%20(third%20copy).md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted%20(third%20copy).md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted%20(third%20copy).md] |
| URL | http://localhost:3000/ftp/announcement_encrypted%20-%20Copy%20(2).md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted%20-%20Copy%20(2).md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted%20-%20Copy%20(2).md] |
| URL | http://localhost:3000/ftp/announcement_encrypted%20-%20Copy%20(3).md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted%20-%20Copy%20(3).md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted%20-%20Copy%20(3).md] |
| URL | http://localhost:3000/ftp/announcement_encrypted%20-%20Copy%20-%20Copy.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted%20-%20Copy%20-%20Copy.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted%20-%20Copy%20-%20Copy.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted%20-%20Copy.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted%20-%20Copy.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted%20-%20Copy.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted(2nd%20copy).md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted(2nd%20copy).md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted(2nd%20copy).md] |
| URL | http://localhost:3000/ftp/announcement_encrypted(3rd%20copy).md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted(3rd%20copy).md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted(3rd%20copy).md] |
| URL | http://localhost:3000/ftp/announcement_encrypted(4th%20copy).md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted(4th%20copy).md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted(4th%20copy).md] |
| URL | http://localhost:3000/ftp/announcement_encrypted(another%20copy).md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted(another%20copy).md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted(another%20copy).md] |
| URL | http://localhost:3000/ftp/announcement_encrypted(copy).md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted(copy).md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted(copy).md] |
| URL | http://localhost:3000/ftp/announcement_encrypted(fourth%20copy).md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted(fourth%20copy).md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted(fourth%20copy).md] |
| URL | http://localhost:3000/ftp/announcement_encrypted(second%20copy).md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted(second%20copy).md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted(second%20copy).md] |
| URL | http://localhost:3000/ftp/announcement_encrypted(third%20copy).md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted(third%20copy).md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted(third%20copy).md] |
| URL | http://localhost:3000/ftp/announcement_encrypted-1.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted-1.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted-1.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted-2.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted-2.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted-2.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted-backup.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted-backup.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted-backup.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted-bak.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted-bak.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted-bak.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted-old.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted-old.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted-old.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.0.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.0.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.0.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.1.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.1.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.1.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.2.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.2.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.2.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.3.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.3.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.3.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.7z.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.7z.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.7z.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.a.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.a.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.a.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.ace.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.ace.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.ace.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.afa.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.afa.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.afa.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.alz.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.alz.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.alz.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.apk.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.apk.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.apk.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.ar.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.ar.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.ar.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.arc.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.arc.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.arc.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.arj.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.arj.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.arj.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.ba.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.ba.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.ba.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.bac.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.bac.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.bac.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.backup.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.backup.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.backup.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.bak.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.bak.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.bak.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.bh.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.bh.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.bh.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.bz2.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.bz2.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.bz2.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.cab.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.cab.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.cab.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.cbz.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.cbz.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.cbz.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.cfs.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.cfs.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.cfs.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.cpio.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.cpio.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.cpio.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.cpt.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.cpt.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.cpt.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.dar.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.dar.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.dar.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.dd.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.dd.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.dd.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.dev.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.dev.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.dev.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.dgc.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.dgc.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.dgc.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.dmg.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.dmg.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.dmg.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.ear.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.ear.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.ear.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.exe.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.exe.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.exe.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.f.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.f.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.f.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.gca.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.gca.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.gca.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.gz.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.gz.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.gz.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.ha.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.ha.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.ha.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.hki.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.hki.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.hki.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.ice.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.ice.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.ice.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.inc.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.inc.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.inc.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.include.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.include.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.include.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.iso.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.iso.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.iso.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.j.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.j.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.j.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.jar.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.jar.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.jar.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.kgb.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.kgb.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.kgb.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.lbr.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.lbr.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.lbr.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.lha.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.lha.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.lha.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.lhz.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.lhz.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.lhz.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.log.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.log.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.log.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.lz.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.lz.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.lz.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.lzk.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.lzk.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.lzk.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.lzma.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.lzma.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.lzma.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.lzo.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.lzo.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.lzo.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.mar.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.mar.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.mar.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.old.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.old.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.old.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.orig.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.orig.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.orig.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.pak.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.pak.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.pak.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.paq6.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.paq6.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.paq6.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.paq7.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.paq7.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.paq7.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.paq8.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.paq8.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.paq8.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.partimg..md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.partimg..md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.partimg..md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.pea.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.pea.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.pea.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.pim.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.pim.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.pim.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.pit.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.pit.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.pit.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.qda.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.qda.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.qda.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.rar.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.rar.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.rar.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.rk.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.rk.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.rk.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.rz.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.rz.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.rz.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.s7z.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.s7z.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.s7z.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.sda.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.sda.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.sda.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.sea.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.sea.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.sea.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.sen.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.sen.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.sen.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.sfark.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.sfark.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.sfark.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.sfx.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.sfx.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.sfx.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.shar.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.shar.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.shar.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.sit.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.sit.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.sit.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.sitx.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.sitx.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.sitx.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.sqx.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.sqx.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.sqx.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.src.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.src.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.src.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.swp.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.swp.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.swp.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.tar.7z.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.tar.7z.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.tar.7z.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.tar.bz2.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.tar.bz2.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.tar.bz2.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.tar.gz.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.tar.gz.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.tar.gz.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.tar.lzma.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.tar.lzma.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.tar.lzma.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.tar.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.tar.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.tar.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.tar.xz.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.tar.xz.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.tar.xz.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.tar.z.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.tar.z.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.tar.z.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.tbz2.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.tbz2.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.tbz2.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.tgz.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.tgz.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.tgz.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.tlz.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.tlz.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.tlz.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.tmp.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.tmp.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.tmp.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.uc.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.uc.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.uc.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.uc0.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.uc0.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.uc0.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.uc2.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.uc2.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.uc2.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.uca.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.uca.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.uca.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.ucn.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.ucn.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.ucn.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.ue2.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.ue2.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.ue2.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.uha.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.uha.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.uha.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.ur2.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.ur2.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.ur2.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.war.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.war.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.war.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.wim.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.wim.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.wim.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.xar.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.xar.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.xar.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.xp3.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.xp3.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.xp3.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.xz.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.xz.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.xz.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.yz1.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.yz1.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.yz1.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.z.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.z.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.z.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.zip.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.zip.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.zip.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.zipx.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.zipx.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.zipx.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.zoo.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.zoo.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.zoo.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.zpaq.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.zpaq.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.zpaq.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.zz.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.zz.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.zz.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted.~bk.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted.~bk.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted.~bk.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted1.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted1.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted1.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted2.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted2.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted2.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted_1.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted_1.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted_1.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted_2.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted_2.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted_2.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted_a.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted_a.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted_a.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted_b.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted_b.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted_b.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted_backup.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted_backup.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted_backup.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted_bak.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted_bak.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted_bak.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted_c.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted_c.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted_c.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted_d.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted_d.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted_d.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted_e.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted_e.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted_e.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted_f.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted_f.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted_f.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted_inc.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted_inc.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted_inc.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted_old.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted_old.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted_old.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted_x.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted_x.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted_x.md] |
| URL | http://localhost:3000/ftp/announcement_encrypteda.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypteda.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypteda.md] |
| URL | http://localhost:3000/ftp/announcement_encryptedb.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encryptedb.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encryptedb.md] |
| URL | http://localhost:3000/ftp/announcement_encryptedbackup.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encryptedbackup.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encryptedbackup.md] |
| URL | http://localhost:3000/ftp/announcement_encryptedbak.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encryptedbak.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encryptedbak.md] |
| URL | http://localhost:3000/ftp/announcement_encryptedc.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encryptedc.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encryptedc.md] |
| URL | http://localhost:3000/ftp/announcement_encryptedd.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encryptedd.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encryptedd.md] |
| URL | http://localhost:3000/ftp/announcement_encryptede.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encryptede.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encryptede.md] |
| URL | http://localhost:3000/ftp/announcement_encryptedf.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encryptedf.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encryptedf.md] |
| URL | http://localhost:3000/ftp/announcement_encryptedinc.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encryptedinc.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encryptedinc.md] |
| URL | http://localhost:3000/ftp/announcement_encryptedold.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encryptedold.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encryptedold.md] |
| URL | http://localhost:3000/ftp/announcement_encrypteds.xz.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypteds.xz.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypteds.xz.md] |
| URL | http://localhost:3000/ftp/announcement_encryptedx.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encryptedx.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encryptedx.md] |
| URL | http://localhost:3000/ftp/announcement_encrypted~.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/announcement_encrypted~.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/announcement_encrypted~.md] |
| URL | http://localhost:3000/ftp/backup-acquisitions.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/backup-acquisitions.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/backup-acquisitions.md] |
| URL | http://localhost:3000/ftp/backup-announcement_encrypted.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/backup-announcement_encrypted.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/backup-announcement_encrypted.md] |
| URL | http://localhost:3000/ftp/backup-legal.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/backup-legal.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/backup-legal.md] |
| URL | http://localhost:3000/ftp/backup_acquisitions.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/backup_acquisitions.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/backup_acquisitions.md] |
| URL | http://localhost:3000/ftp/backup_announcement_encrypted.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/backup_announcement_encrypted.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/backup_announcement_encrypted.md] |
| URL | http://localhost:3000/ftp/backup_legal.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/backup_legal.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/backup_legal.md] |
| URL | http://localhost:3000/ftp/backupacquisitions.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/backupacquisitions.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/backupacquisitions.md] |
| URL | http://localhost:3000/ftp/backupannouncement_encrypted.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/backupannouncement_encrypted.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/backupannouncement_encrypted.md] |
| URL | http://localhost:3000/ftp/backuplegal.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/backuplegal.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/backuplegal.md] |
| URL | http://localhost:3000/ftp/bak-acquisitions.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/bak-acquisitions.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/bak-acquisitions.md] |
| URL | http://localhost:3000/ftp/bak-announcement_encrypted.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/bak-announcement_encrypted.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/bak-announcement_encrypted.md] |
| URL | http://localhost:3000/ftp/bak-legal.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/bak-legal.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/bak-legal.md] |
| URL | http://localhost:3000/ftp/bak_acquisitions.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/bak_acquisitions.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/bak_acquisitions.md] |
| URL | http://localhost:3000/ftp/bak_announcement_encrypted.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/bak_announcement_encrypted.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/bak_announcement_encrypted.md] |
| URL | http://localhost:3000/ftp/bak_legal.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/bak_legal.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/bak_legal.md] |
| URL | http://localhost:3000/ftp/bakacquisitions.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/bakacquisitions.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/bakacquisitions.md] |
| URL | http://localhost:3000/ftp/bakannouncement_encrypted.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/bakannouncement_encrypted.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/bakannouncement_encrypted.md] |
| URL | http://localhost:3000/ftp/baklegal.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/baklegal.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/baklegal.md] |
| URL | http://localhost:3000/ftp/Copy%20(2)%20of%20acquisitions.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/Copy%20(2)%20of%20acquisitions.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/Copy%20(2)%20of%20acquisitions.md] |
| URL | http://localhost:3000/ftp/Copy%20(2)%20of%20announcement_encrypted.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/Copy%20(2)%20of%20announcement_encrypted.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/Copy%20(2)%20of%20announcement_encrypted.md] |
| URL | http://localhost:3000/ftp/Copy%20(2)%20of%20legal.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/Copy%20(2)%20of%20legal.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/Copy%20(2)%20of%20legal.md] |
| URL | http://localhost:3000/ftp/Copy%20(3)%20of%20acquisitions.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/Copy%20(3)%20of%20acquisitions.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/Copy%20(3)%20of%20acquisitions.md] |
| URL | http://localhost:3000/ftp/Copy%20(3)%20of%20announcement_encrypted.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/Copy%20(3)%20of%20announcement_encrypted.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/Copy%20(3)%20of%20announcement_encrypted.md] |
| URL | http://localhost:3000/ftp/Copy%20(3)%20of%20legal.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/Copy%20(3)%20of%20legal.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/Copy%20(3)%20of%20legal.md] |
| URL | http://localhost:3000/ftp/Copy%20of%20acquisitions.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/Copy%20of%20acquisitions.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/Copy%20of%20acquisitions.md] |
| URL | http://localhost:3000/ftp/Copy%20of%20announcement_encrypted.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/Copy%20of%20announcement_encrypted.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/Copy%20of%20announcement_encrypted.md] |
| URL | http://localhost:3000/ftp/Copy%20of%20Copy%20of%20acquisitions.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/Copy%20of%20Copy%20of%20acquisitions.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/Copy%20of%20Copy%20of%20acquisitions.md] |
| URL | http://localhost:3000/ftp/Copy%20of%20Copy%20of%20announcement_encrypted.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/Copy%20of%20Copy%20of%20announcement_encrypted.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/Copy%20of%20Copy%20of%20announcement_encrypted.md] |
| URL | http://localhost:3000/ftp/Copy%20of%20Copy%20of%20legal.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/Copy%20of%20Copy%20of%20legal.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/Copy%20of%20Copy%20of%20legal.md] |
| URL | http://localhost:3000/ftp/Copy%20of%20legal.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/Copy%20of%20legal.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/Copy%20of%20legal.md] |
| URL | http://localhost:3000/ftp/legal%20(2nd%20copy).md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal%20(2nd%20copy).md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal%20(2nd%20copy).md] |
| URL | http://localhost:3000/ftp/legal%20(3rd%20copy).md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal%20(3rd%20copy).md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal%20(3rd%20copy).md] |
| URL | http://localhost:3000/ftp/legal%20(4th%20copy).md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal%20(4th%20copy).md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal%20(4th%20copy).md] |
| URL | http://localhost:3000/ftp/legal%20(another%20copy).md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal%20(another%20copy).md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal%20(another%20copy).md] |
| URL | http://localhost:3000/ftp/legal%20(copy).md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal%20(copy).md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal%20(copy).md] |
| URL | http://localhost:3000/ftp/legal%20(fourth%20copy).md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal%20(fourth%20copy).md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal%20(fourth%20copy).md] |
| URL | http://localhost:3000/ftp/legal%20(second%20copy).md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal%20(second%20copy).md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal%20(second%20copy).md] |
| URL | http://localhost:3000/ftp/legal%20(third%20copy).md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal%20(third%20copy).md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal%20(third%20copy).md] |
| URL | http://localhost:3000/ftp/legal%20-%20Copy%20(2).md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal%20-%20Copy%20(2).md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal%20-%20Copy%20(2).md] |
| URL | http://localhost:3000/ftp/legal%20-%20Copy%20(3).md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal%20-%20Copy%20(3).md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal%20-%20Copy%20(3).md] |
| URL | http://localhost:3000/ftp/legal%20-%20Copy%20-%20Copy.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal%20-%20Copy%20-%20Copy.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal%20-%20Copy%20-%20Copy.md] |
| URL | http://localhost:3000/ftp/legal%20-%20Copy.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal%20-%20Copy.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal%20-%20Copy.md] |
| URL | http://localhost:3000/ftp/legal(2nd%20copy).md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal(2nd%20copy).md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal(2nd%20copy).md] |
| URL | http://localhost:3000/ftp/legal(3rd%20copy).md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal(3rd%20copy).md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal(3rd%20copy).md] |
| URL | http://localhost:3000/ftp/legal(4th%20copy).md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal(4th%20copy).md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal(4th%20copy).md] |
| URL | http://localhost:3000/ftp/legal(another%20copy).md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal(another%20copy).md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal(another%20copy).md] |
| URL | http://localhost:3000/ftp/legal(copy).md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal(copy).md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal(copy).md] |
| URL | http://localhost:3000/ftp/legal(fourth%20copy).md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal(fourth%20copy).md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal(fourth%20copy).md] |
| URL | http://localhost:3000/ftp/legal(second%20copy).md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal(second%20copy).md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal(second%20copy).md] |
| URL | http://localhost:3000/ftp/legal(third%20copy).md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal(third%20copy).md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal(third%20copy).md] |
| URL | http://localhost:3000/ftp/legal-1.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal-1.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal-1.md] |
| URL | http://localhost:3000/ftp/legal-2.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal-2.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal-2.md] |
| URL | http://localhost:3000/ftp/legal-backup.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal-backup.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal-backup.md] |
| URL | http://localhost:3000/ftp/legal-bak.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal-bak.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal-bak.md] |
| URL | http://localhost:3000/ftp/legal-old.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal-old.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal-old.md] |
| URL | http://localhost:3000/ftp/legal.0.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.0.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.0.md] |
| URL | http://localhost:3000/ftp/legal.1.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.1.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.1.md] |
| URL | http://localhost:3000/ftp/legal.2.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.2.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.2.md] |
| URL | http://localhost:3000/ftp/legal.3.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.3.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.3.md] |
| URL | http://localhost:3000/ftp/legal.7z.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.7z.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.7z.md] |
| URL | http://localhost:3000/ftp/legal.a.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.a.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.a.md] |
| URL | http://localhost:3000/ftp/legal.ace.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.ace.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.ace.md] |
| URL | http://localhost:3000/ftp/legal.afa.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.afa.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.afa.md] |
| URL | http://localhost:3000/ftp/legal.alz.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.alz.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.alz.md] |
| URL | http://localhost:3000/ftp/legal.apk.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.apk.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.apk.md] |
| URL | http://localhost:3000/ftp/legal.ar.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.ar.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.ar.md] |
| URL | http://localhost:3000/ftp/legal.arc.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.arc.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.arc.md] |
| URL | http://localhost:3000/ftp/legal.arj.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.arj.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.arj.md] |
| URL | http://localhost:3000/ftp/legal.ba.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.ba.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.ba.md] |
| URL | http://localhost:3000/ftp/legal.bac.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.bac.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.bac.md] |
| URL | http://localhost:3000/ftp/legal.backup.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.backup.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.backup.md] |
| URL | http://localhost:3000/ftp/legal.bak.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.bak.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.bak.md] |
| URL | http://localhost:3000/ftp/legal.bh.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.bh.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.bh.md] |
| URL | http://localhost:3000/ftp/legal.bz2.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.bz2.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.bz2.md] |
| URL | http://localhost:3000/ftp/legal.cab.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.cab.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.cab.md] |
| URL | http://localhost:3000/ftp/legal.cbz.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.cbz.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.cbz.md] |
| URL | http://localhost:3000/ftp/legal.cfs.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.cfs.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.cfs.md] |
| URL | http://localhost:3000/ftp/legal.cpio.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.cpio.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.cpio.md] |
| URL | http://localhost:3000/ftp/legal.cpt.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.cpt.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.cpt.md] |
| URL | http://localhost:3000/ftp/legal.dar.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.dar.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.dar.md] |
| URL | http://localhost:3000/ftp/legal.dd.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.dd.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.dd.md] |
| URL | http://localhost:3000/ftp/legal.dev.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.dev.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.dev.md] |
| URL | http://localhost:3000/ftp/legal.dgc.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.dgc.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.dgc.md] |
| URL | http://localhost:3000/ftp/legal.dmg.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.dmg.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.dmg.md] |
| URL | http://localhost:3000/ftp/legal.ear.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.ear.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.ear.md] |
| URL | http://localhost:3000/ftp/legal.exe.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.exe.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.exe.md] |
| URL | http://localhost:3000/ftp/legal.f.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.f.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.f.md] |
| URL | http://localhost:3000/ftp/legal.gca.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.gca.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.gca.md] |
| URL | http://localhost:3000/ftp/legal.gz.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.gz.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.gz.md] |
| URL | http://localhost:3000/ftp/legal.ha.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.ha.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.ha.md] |
| URL | http://localhost:3000/ftp/legal.hki.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.hki.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.hki.md] |
| URL | http://localhost:3000/ftp/legal.ice.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.ice.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.ice.md] |
| URL | http://localhost:3000/ftp/legal.inc.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.inc.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.inc.md] |
| URL | http://localhost:3000/ftp/legal.include.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.include.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.include.md] |
| URL | http://localhost:3000/ftp/legal.iso.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.iso.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.iso.md] |
| URL | http://localhost:3000/ftp/legal.j.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.j.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.j.md] |
| URL | http://localhost:3000/ftp/legal.jar.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.jar.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.jar.md] |
| URL | http://localhost:3000/ftp/legal.kgb.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.kgb.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.kgb.md] |
| URL | http://localhost:3000/ftp/legal.lbr.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.lbr.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.lbr.md] |
| URL | http://localhost:3000/ftp/legal.lha.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.lha.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.lha.md] |
| URL | http://localhost:3000/ftp/legal.lhz.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.lhz.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.lhz.md] |
| URL | http://localhost:3000/ftp/legal.log.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.log.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.log.md] |
| URL | http://localhost:3000/ftp/legal.lz.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.lz.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.lz.md] |
| URL | http://localhost:3000/ftp/legal.lzk.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.lzk.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.lzk.md] |
| URL | http://localhost:3000/ftp/legal.lzma.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.lzma.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.lzma.md] |
| URL | http://localhost:3000/ftp/legal.lzo.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.lzo.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.lzo.md] |
| URL | http://localhost:3000/ftp/legal.mar.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.mar.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.mar.md] |
| URL | http://localhost:3000/ftp/legal.old.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.old.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.old.md] |
| URL | http://localhost:3000/ftp/legal.orig.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.orig.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.orig.md] |
| URL | http://localhost:3000/ftp/legal.pak.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.pak.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.pak.md] |
| URL | http://localhost:3000/ftp/legal.paq6.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.paq6.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.paq6.md] |
| URL | http://localhost:3000/ftp/legal.paq7.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.paq7.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.paq7.md] |
| URL | http://localhost:3000/ftp/legal.paq8.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.paq8.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.paq8.md] |
| URL | http://localhost:3000/ftp/legal.partimg..md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.partimg..md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.partimg..md] |
| URL | http://localhost:3000/ftp/legal.pea.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.pea.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.pea.md] |
| URL | http://localhost:3000/ftp/legal.pim.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.pim.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.pim.md] |
| URL | http://localhost:3000/ftp/legal.pit.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.pit.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.pit.md] |
| URL | http://localhost:3000/ftp/legal.qda.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.qda.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.qda.md] |
| URL | http://localhost:3000/ftp/legal.rar.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.rar.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.rar.md] |
| URL | http://localhost:3000/ftp/legal.rk.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.rk.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.rk.md] |
| URL | http://localhost:3000/ftp/legal.rz.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.rz.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.rz.md] |
| URL | http://localhost:3000/ftp/legal.s7z.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.s7z.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.s7z.md] |
| URL | http://localhost:3000/ftp/legal.sda.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.sda.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.sda.md] |
| URL | http://localhost:3000/ftp/legal.sea.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.sea.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.sea.md] |
| URL | http://localhost:3000/ftp/legal.sen.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.sen.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.sen.md] |
| URL | http://localhost:3000/ftp/legal.sfark.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.sfark.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.sfark.md] |
| URL | http://localhost:3000/ftp/legal.sfx.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.sfx.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.sfx.md] |
| URL | http://localhost:3000/ftp/legal.shar.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.shar.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.shar.md] |
| URL | http://localhost:3000/ftp/legal.sit.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.sit.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.sit.md] |
| URL | http://localhost:3000/ftp/legal.sitx.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.sitx.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.sitx.md] |
| URL | http://localhost:3000/ftp/legal.sqx.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.sqx.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.sqx.md] |
| URL | http://localhost:3000/ftp/legal.src.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.src.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.src.md] |
| URL | http://localhost:3000/ftp/legal.swp.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.swp.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.swp.md] |
| URL | http://localhost:3000/ftp/legal.tar.7z.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.tar.7z.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.tar.7z.md] |
| URL | http://localhost:3000/ftp/legal.tar.bz2.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.tar.bz2.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.tar.bz2.md] |
| URL | http://localhost:3000/ftp/legal.tar.gz.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.tar.gz.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.tar.gz.md] |
| URL | http://localhost:3000/ftp/legal.tar.lzma.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.tar.lzma.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.tar.lzma.md] |
| URL | http://localhost:3000/ftp/legal.tar.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.tar.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.tar.md] |
| URL | http://localhost:3000/ftp/legal.tar.xz.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.tar.xz.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.tar.xz.md] |
| URL | http://localhost:3000/ftp/legal.tar.z.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.tar.z.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.tar.z.md] |
| URL | http://localhost:3000/ftp/legal.tbz2.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.tbz2.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.tbz2.md] |
| URL | http://localhost:3000/ftp/legal.tgz.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.tgz.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.tgz.md] |
| URL | http://localhost:3000/ftp/legal.tlz.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.tlz.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.tlz.md] |
| URL | http://localhost:3000/ftp/legal.tmp.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.tmp.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.tmp.md] |
| URL | http://localhost:3000/ftp/legal.uc.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.uc.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.uc.md] |
| URL | http://localhost:3000/ftp/legal.uc0.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.uc0.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.uc0.md] |
| URL | http://localhost:3000/ftp/legal.uc2.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.uc2.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.uc2.md] |
| URL | http://localhost:3000/ftp/legal.uca.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.uca.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.uca.md] |
| URL | http://localhost:3000/ftp/legal.ucn.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.ucn.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.ucn.md] |
| URL | http://localhost:3000/ftp/legal.ue2.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.ue2.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.ue2.md] |
| URL | http://localhost:3000/ftp/legal.uha.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.uha.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.uha.md] |
| URL | http://localhost:3000/ftp/legal.ur2.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.ur2.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.ur2.md] |
| URL | http://localhost:3000/ftp/legal.war.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.war.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.war.md] |
| URL | http://localhost:3000/ftp/legal.wim.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.wim.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.wim.md] |
| URL | http://localhost:3000/ftp/legal.xar.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.xar.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.xar.md] |
| URL | http://localhost:3000/ftp/legal.xp3.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.xp3.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.xp3.md] |
| URL | http://localhost:3000/ftp/legal.xz.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.xz.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.xz.md] |
| URL | http://localhost:3000/ftp/legal.yz1.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.yz1.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.yz1.md] |
| URL | http://localhost:3000/ftp/legal.z.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.z.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.z.md] |
| URL | http://localhost:3000/ftp/legal.zip.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.zip.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.zip.md] |
| URL | http://localhost:3000/ftp/legal.zipx.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.zipx.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.zipx.md] |
| URL | http://localhost:3000/ftp/legal.zoo.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.zoo.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.zoo.md] |
| URL | http://localhost:3000/ftp/legal.zpaq.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.zpaq.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.zpaq.md] |
| URL | http://localhost:3000/ftp/legal.zz.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.zz.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.zz.md] |
| URL | http://localhost:3000/ftp/legal.~bk.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal.~bk.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal.~bk.md] |
| URL | http://localhost:3000/ftp/legal1.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal1.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal1.md] |
| URL | http://localhost:3000/ftp/legal2.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal2.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal2.md] |
| URL | http://localhost:3000/ftp/legal_1.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal_1.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal_1.md] |
| URL | http://localhost:3000/ftp/legal_2.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal_2.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal_2.md] |
| URL | http://localhost:3000/ftp/legal_a.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal_a.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal_a.md] |
| URL | http://localhost:3000/ftp/legal_b.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal_b.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal_b.md] |
| URL | http://localhost:3000/ftp/legal_backup.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal_backup.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal_backup.md] |
| URL | http://localhost:3000/ftp/legal_bak.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal_bak.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal_bak.md] |
| URL | http://localhost:3000/ftp/legal_c.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal_c.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal_c.md] |
| URL | http://localhost:3000/ftp/legal_d.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal_d.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal_d.md] |
| URL | http://localhost:3000/ftp/legal_e.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal_e.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal_e.md] |
| URL | http://localhost:3000/ftp/legal_f.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal_f.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal_f.md] |
| URL | http://localhost:3000/ftp/legal_inc.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal_inc.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal_inc.md] |
| URL | http://localhost:3000/ftp/legal_old.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal_old.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal_old.md] |
| URL | http://localhost:3000/ftp/legal_x.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal_x.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal_x.md] |
| URL | http://localhost:3000/ftp/legala.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legala.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legala.md] |
| URL | http://localhost:3000/ftp/legalb.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legalb.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legalb.md] |
| URL | http://localhost:3000/ftp/legalbackup.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legalbackup.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legalbackup.md] |
| URL | http://localhost:3000/ftp/legalbak.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legalbak.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legalbak.md] |
| URL | http://localhost:3000/ftp/legalc.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legalc.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legalc.md] |
| URL | http://localhost:3000/ftp/legald.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legald.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legald.md] |
| URL | http://localhost:3000/ftp/legale.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legale.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legale.md] |
| URL | http://localhost:3000/ftp/legalf.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legalf.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legalf.md] |
| URL | http://localhost:3000/ftp/legalinc.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legalinc.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legalinc.md] |
| URL | http://localhost:3000/ftp/legalold.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legalold.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legalold.md] |
| URL | http://localhost:3000/ftp/legals.xz.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legals.xz.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legals.xz.md] |
| URL | http://localhost:3000/ftp/legalx.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legalx.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legalx.md] |
| URL | http://localhost:3000/ftp/legal~.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/legal~.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/legal~.md] |
| URL | http://localhost:3000/ftp/old-acquisitions.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/old-acquisitions.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/old-acquisitions.md] |
| URL | http://localhost:3000/ftp/old-announcement_encrypted.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/old-announcement_encrypted.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/old-announcement_encrypted.md] |
| URL | http://localhost:3000/ftp/old-legal.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/old-legal.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/old-legal.md] |
| URL | http://localhost:3000/ftp/old_acquisitions.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/old_acquisitions.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/old_acquisitions.md] |
| URL | http://localhost:3000/ftp/old_announcement_encrypted.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/old_announcement_encrypted.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/old_announcement_encrypted.md] |
| URL | http://localhost:3000/ftp/old_legal.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/old_legal.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/old_legal.md] |
| URL | http://localhost:3000/ftp/oldacquisitions.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/oldacquisitions.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/acquisitions.md] is available at [http://localhost:3000/ftp/oldacquisitions.md] |
| URL | http://localhost:3000/ftp/oldannouncement_encrypted.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/oldannouncement_encrypted.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/announcement_encrypted.md] is available at [http://localhost:3000/ftp/oldannouncement_encrypted.md] |
| URL | http://localhost:3000/ftp/oldlegal.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/oldlegal.md |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/legal.md] is available at [http://localhost:3000/ftp/oldlegal.md] |
| URL | http://localhost:3000/ftp/quarantine%20(2nd%20copy) |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine%20(2nd%20copy) |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine%20(2nd%20copy)] |
| URL | http://localhost:3000/ftp/quarantine%20(3rd%20copy) |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine%20(3rd%20copy) |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine%20(3rd%20copy)] |
| URL | http://localhost:3000/ftp/quarantine%20(4th%20copy) |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine%20(4th%20copy) |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine%20(4th%20copy)] |
| URL | http://localhost:3000/ftp/quarantine%20(another%20copy) |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine%20(another%20copy) |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine%20(another%20copy)] |
| URL | http://localhost:3000/ftp/quarantine%20(copy) |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine%20(copy) |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine%20(copy)] |
| URL | http://localhost:3000/ftp/quarantine%20(fourth%20copy) |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine%20(fourth%20copy) |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine%20(fourth%20copy)] |
| URL | http://localhost:3000/ftp/quarantine%20(second%20copy) |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine%20(second%20copy) |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine%20(second%20copy)] |
| URL | http://localhost:3000/ftp/quarantine%20(third%20copy) |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine%20(third%20copy) |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine%20(third%20copy)] |
| URL | http://localhost:3000/ftp/quarantine%20-%20Copy |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine%20-%20Copy |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine%20-%20Copy] |
| URL | http://localhost:3000/ftp/quarantine%20-%20Copy%20(2) |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine%20-%20Copy%20(2) |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine%20-%20Copy%20(2)] |
| URL | http://localhost:3000/ftp/quarantine%20-%20Copy%20(3) |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine%20-%20Copy%20(3) |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine%20-%20Copy%20(3)] |
| URL | http://localhost:3000/ftp/quarantine%20-%20Copy%20-%20Copy |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine%20-%20Copy%20-%20Copy |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine%20-%20Copy%20-%20Copy] |
| URL | http://localhost:3000/ftp/quarantine(2nd%20copy) |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine(2nd%20copy) |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine(2nd%20copy)] |
| URL | http://localhost:3000/ftp/quarantine(3rd%20copy) |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine(3rd%20copy) |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine(3rd%20copy)] |
| URL | http://localhost:3000/ftp/quarantine(4th%20copy) |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine(4th%20copy) |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine(4th%20copy)] |
| URL | http://localhost:3000/ftp/quarantine(another%20copy) |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine(another%20copy) |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine(another%20copy)] |
| URL | http://localhost:3000/ftp/quarantine(copy) |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine(copy) |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine(copy)] |
| URL | http://localhost:3000/ftp/quarantine(fourth%20copy) |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine(fourth%20copy) |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine(fourth%20copy)] |
| URL | http://localhost:3000/ftp/quarantine(second%20copy) |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine(second%20copy) |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine(second%20copy)] |
| URL | http://localhost:3000/ftp/quarantine(third%20copy) |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine(third%20copy) |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine(third%20copy)] |
| URL | http://localhost:3000/ftp/quarantine-1 |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine-1 |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine-1] |
| URL | http://localhost:3000/ftp/quarantine-2 |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine-2 |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine-2] |
| URL | http://localhost:3000/ftp/quarantine-backup |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine-backup |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine-backup] |
| URL | http://localhost:3000/ftp/quarantine-bak |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine-bak |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine-bak] |
| URL | http://localhost:3000/ftp/quarantine-old |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine-old |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine-old] |
| URL | http://localhost:3000/ftp/quarantine.0 |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.0 |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.0] |
| URL | http://localhost:3000/ftp/quarantine.1 |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.1 |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.1] |
| URL | http://localhost:3000/ftp/quarantine.2 |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.2 |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.2] |
| URL | http://localhost:3000/ftp/quarantine.3 |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.3 |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.3] |
| URL | http://localhost:3000/ftp/quarantine.7z |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.7z |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.7z] |
| URL | http://localhost:3000/ftp/quarantine.a |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.a |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.a] |
| URL | http://localhost:3000/ftp/quarantine.ace |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.ace |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.ace] |
| URL | http://localhost:3000/ftp/quarantine.afa |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.afa |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.afa] |
| URL | http://localhost:3000/ftp/quarantine.alz |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.alz |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.alz] |
| URL | http://localhost:3000/ftp/quarantine.apk |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.apk |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.apk] |
| URL | http://localhost:3000/ftp/quarantine.ar |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.ar |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.ar] |
| URL | http://localhost:3000/ftp/quarantine.arc |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.arc |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.arc] |
| URL | http://localhost:3000/ftp/quarantine.arj |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.arj |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.arj] |
| URL | http://localhost:3000/ftp/quarantine.ba |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.ba |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.ba] |
| URL | http://localhost:3000/ftp/quarantine.bac |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.bac |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.bac] |
| URL | http://localhost:3000/ftp/quarantine.backup |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.backup |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.backup] |
| URL | http://localhost:3000/ftp/quarantine.bak |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.bak |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.bak] |
| URL | http://localhost:3000/ftp/quarantine.bh |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.bh |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.bh] |
| URL | http://localhost:3000/ftp/quarantine.bz2 |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.bz2 |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.bz2] |
| URL | http://localhost:3000/ftp/quarantine.cab |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.cab |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.cab] |
| URL | http://localhost:3000/ftp/quarantine.cbz |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.cbz |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.cbz] |
| URL | http://localhost:3000/ftp/quarantine.cfs |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.cfs |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.cfs] |
| URL | http://localhost:3000/ftp/quarantine.cpio |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.cpio |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.cpio] |
| URL | http://localhost:3000/ftp/quarantine.cpt |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.cpt |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.cpt] |
| URL | http://localhost:3000/ftp/quarantine.dar |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.dar |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.dar] |
| URL | http://localhost:3000/ftp/quarantine.dd |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.dd |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.dd] |
| URL | http://localhost:3000/ftp/quarantine.dev |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.dev |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.dev] |
| URL | http://localhost:3000/ftp/quarantine.dgc |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.dgc |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.dgc] |
| URL | http://localhost:3000/ftp/quarantine.dmg |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.dmg |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.dmg] |
| URL | http://localhost:3000/ftp/quarantine.ear |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.ear |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.ear] |
| URL | http://localhost:3000/ftp/quarantine.exe |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.exe |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.exe] |
| URL | http://localhost:3000/ftp/quarantine.f |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.f |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.f] |
| URL | http://localhost:3000/ftp/quarantine.gca |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.gca |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.gca] |
| URL | http://localhost:3000/ftp/quarantine.gz |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.gz |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.gz] |
| URL | http://localhost:3000/ftp/quarantine.ha |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.ha |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.ha] |
| URL | http://localhost:3000/ftp/quarantine.hki |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.hki |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.hki] |
| URL | http://localhost:3000/ftp/quarantine.ice |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.ice |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.ice] |
| URL | http://localhost:3000/ftp/quarantine.inc |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.inc |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.inc] |
| URL | http://localhost:3000/ftp/quarantine.include |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.include |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.include] |
| URL | http://localhost:3000/ftp/quarantine.iso |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.iso |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.iso] |
| URL | http://localhost:3000/ftp/quarantine.j |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.j |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.j] |
| URL | http://localhost:3000/ftp/quarantine.jar |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.jar |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.jar] |
| URL | http://localhost:3000/ftp/quarantine.kgb |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.kgb |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.kgb] |
| URL | http://localhost:3000/ftp/quarantine.lbr |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.lbr |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.lbr] |
| URL | http://localhost:3000/ftp/quarantine.lha |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.lha |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.lha] |
| URL | http://localhost:3000/ftp/quarantine.lhz |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.lhz |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.lhz] |
| URL | http://localhost:3000/ftp/quarantine.log |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.log |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.log] |
| URL | http://localhost:3000/ftp/quarantine.lz |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.lz |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.lz] |
| URL | http://localhost:3000/ftp/quarantine.lzk |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.lzk |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.lzk] |
| URL | http://localhost:3000/ftp/quarantine.lzma |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.lzma |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.lzma] |
| URL | http://localhost:3000/ftp/quarantine.lzo |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.lzo |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.lzo] |
| URL | http://localhost:3000/ftp/quarantine.mar |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.mar |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.mar] |
| URL | http://localhost:3000/ftp/quarantine.old |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.old |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.old] |
| URL | http://localhost:3000/ftp/quarantine.orig |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.orig |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.orig] |
| URL | http://localhost:3000/ftp/quarantine.pak |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.pak |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.pak] |
| URL | http://localhost:3000/ftp/quarantine.paq6 |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.paq6 |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.paq6] |
| URL | http://localhost:3000/ftp/quarantine.paq7 |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.paq7 |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.paq7] |
| URL | http://localhost:3000/ftp/quarantine.paq8 |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.paq8 |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.paq8] |
| URL | http://localhost:3000/ftp/quarantine.partimg. |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.partimg. |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.partimg.] |
| URL | http://localhost:3000/ftp/quarantine.pea |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.pea |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.pea] |
| URL | http://localhost:3000/ftp/quarantine.pim |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.pim |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.pim] |
| URL | http://localhost:3000/ftp/quarantine.pit |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.pit |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.pit] |
| URL | http://localhost:3000/ftp/quarantine.qda |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.qda |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.qda] |
| URL | http://localhost:3000/ftp/quarantine.rar |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.rar |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.rar] |
| URL | http://localhost:3000/ftp/quarantine.rk |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.rk |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.rk] |
| URL | http://localhost:3000/ftp/quarantine.rz |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.rz |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.rz] |
| URL | http://localhost:3000/ftp/quarantine.s7z |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.s7z |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.s7z] |
| URL | http://localhost:3000/ftp/quarantine.sda |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.sda |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.sda] |
| URL | http://localhost:3000/ftp/quarantine.sea |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.sea |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.sea] |
| URL | http://localhost:3000/ftp/quarantine.sen |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.sen |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.sen] |
| URL | http://localhost:3000/ftp/quarantine.sfark |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.sfark |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.sfark] |
| URL | http://localhost:3000/ftp/quarantine.sfx |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.sfx |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.sfx] |
| URL | http://localhost:3000/ftp/quarantine.shar |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.shar |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.shar] |
| URL | http://localhost:3000/ftp/quarantine.sit |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.sit |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.sit] |
| URL | http://localhost:3000/ftp/quarantine.sitx |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.sitx |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.sitx] |
| URL | http://localhost:3000/ftp/quarantine.sqx |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.sqx |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.sqx] |
| URL | http://localhost:3000/ftp/quarantine.src |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.src |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.src] |
| URL | http://localhost:3000/ftp/quarantine.swp |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.swp |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.swp] |
| URL | http://localhost:3000/ftp/quarantine.tar |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.tar |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.tar] |
| URL | http://localhost:3000/ftp/quarantine.tar.7z |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.tar.7z |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.tar.7z] |
| URL | http://localhost:3000/ftp/quarantine.tar.bz2 |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.tar.bz2 |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.tar.bz2] |
| URL | http://localhost:3000/ftp/quarantine.tar.gz |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.tar.gz |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.tar.gz] |
| URL | http://localhost:3000/ftp/quarantine.tar.lzma |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.tar.lzma |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.tar.lzma] |
| URL | http://localhost:3000/ftp/quarantine.tar.xz |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.tar.xz |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.tar.xz] |
| URL | http://localhost:3000/ftp/quarantine.tar.z |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.tar.z |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.tar.z] |
| URL | http://localhost:3000/ftp/quarantine.tbz2 |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.tbz2 |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.tbz2] |
| URL | http://localhost:3000/ftp/quarantine.tgz |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.tgz |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.tgz] |
| URL | http://localhost:3000/ftp/quarantine.tlz |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.tlz |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.tlz] |
| URL | http://localhost:3000/ftp/quarantine.tmp |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.tmp |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.tmp] |
| URL | http://localhost:3000/ftp/quarantine.uc |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.uc |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.uc] |
| URL | http://localhost:3000/ftp/quarantine.uc0 |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.uc0 |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.uc0] |
| URL | http://localhost:3000/ftp/quarantine.uc2 |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.uc2 |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.uc2] |
| URL | http://localhost:3000/ftp/quarantine.uca |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.uca |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.uca] |
| URL | http://localhost:3000/ftp/quarantine.ucn |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.ucn |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.ucn] |
| URL | http://localhost:3000/ftp/quarantine.ue2 |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.ue2 |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.ue2] |
| URL | http://localhost:3000/ftp/quarantine.uha |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.uha |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.uha] |
| URL | http://localhost:3000/ftp/quarantine.ur2 |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.ur2 |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.ur2] |
| URL | http://localhost:3000/ftp/quarantine.war |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.war |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.war] |
| URL | http://localhost:3000/ftp/quarantine.wim |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.wim |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.wim] |
| URL | http://localhost:3000/ftp/quarantine.xar |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.xar |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.xar] |
| URL | http://localhost:3000/ftp/quarantine.xp3 |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.xp3 |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.xp3] |
| URL | http://localhost:3000/ftp/quarantine.xz |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.xz |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.xz] |
| URL | http://localhost:3000/ftp/quarantine.yz1 |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.yz1 |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.yz1] |
| URL | http://localhost:3000/ftp/quarantine.z |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.z |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.z] |
| URL | http://localhost:3000/ftp/quarantine.zip |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.zip |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.zip] |
| URL | http://localhost:3000/ftp/quarantine.zipx |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.zipx |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.zipx] |
| URL | http://localhost:3000/ftp/quarantine.zoo |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.zoo |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.zoo] |
| URL | http://localhost:3000/ftp/quarantine.zpaq |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.zpaq |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.zpaq] |
| URL | http://localhost:3000/ftp/quarantine.zz |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.zz |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.zz] |
| URL | http://localhost:3000/ftp/quarantine.~bk |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine.~bk |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine.~bk] |
| URL | http://localhost:3000/ftp/quarantine1 |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine1 |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine1] |
| URL | http://localhost:3000/ftp/quarantine2 |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine2 |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine2] |
| URL | http://localhost:3000/ftp/quarantine_1 |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine_1 |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine_1] |
| URL | http://localhost:3000/ftp/quarantine_2 |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine_2 |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine_2] |
| URL | http://localhost:3000/ftp/quarantine_a |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine_a |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine_a] |
| URL | http://localhost:3000/ftp/quarantine_b |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine_b |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine_b] |
| URL | http://localhost:3000/ftp/quarantine_backup |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine_backup |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine_backup] |
| URL | http://localhost:3000/ftp/quarantine_bak |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine_bak |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine_bak] |
| URL | http://localhost:3000/ftp/quarantine_c |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine_c |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine_c] |
| URL | http://localhost:3000/ftp/quarantine_d |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine_d |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine_d] |
| URL | http://localhost:3000/ftp/quarantine_e |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine_e |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine_e] |
| URL | http://localhost:3000/ftp/quarantine_f |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine_f |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine_f] |
| URL | http://localhost:3000/ftp/quarantine_inc |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine_inc |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine_inc] |
| URL | http://localhost:3000/ftp/quarantine_old |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine_old |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine_old] |
| URL | http://localhost:3000/ftp/quarantine_x |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine_x |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine_x] |
| URL | http://localhost:3000/ftp/quarantinea |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantinea |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantinea] |
| URL | http://localhost:3000/ftp/quarantineb |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantineb |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantineb] |
| URL | http://localhost:3000/ftp/quarantinebackup |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantinebackup |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantinebackup] |
| URL | http://localhost:3000/ftp/quarantinebak |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantinebak |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantinebak] |
| URL | http://localhost:3000/ftp/quarantinec |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantinec |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantinec] |
| URL | http://localhost:3000/ftp/quarantined |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantined |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantined] |
| URL | http://localhost:3000/ftp/quarantinee |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantinee |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantinee] |
| URL | http://localhost:3000/ftp/quarantinef |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantinef |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantinef] |
| URL | http://localhost:3000/ftp/quarantineinc |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantineinc |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantineinc] |
| URL | http://localhost:3000/ftp/quarantineold |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantineold |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantineold] |
| URL | http://localhost:3000/ftp/quarantines.xz |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantines.xz |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantines.xz] |
| URL | http://localhost:3000/ftp/quarantinex |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantinex |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantinex] |
| URL | http://localhost:3000/ftp/quarantine~ |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/quarantine~ |
| Evidence | |
| Other Info | A backup of [http://localhost:3000/ftp/quarantine] is available at [http://localhost:3000/ftp/quarantine~] |
| Instances | 709 |
| Solution |
Do not edit files in-situ on the web server, and ensure that un-necessary files (including hidden files) are removed from the web server.
|
| Reference |
https://cwe.mitre.org/data/definitions/530.html
https://owasp.org/www-project-web-security-testing-guide/v41/4-Web_Application_Security_Testing/02-Configuration_and_Deployment_Management_Testing/04-Review_Old_Backup_and_Unreferenced_Files_for_Sensitive_Information.html |
| CWE Id | 530 |
| WASC Id | 34 |
| Plugin Id | 10095 |
|
Medium |
Bypassing 403 |
|---|---|
| Description |
Bypassing 403 endpoints may be possible, the scan rule sent a payload that caused the response to be accessible (status code 200).
|
| URL | http://localhost/%20/api%20/ |
| Method | GET |
| Parameter | |
| Attack | /%20/api%20/ |
| Evidence | |
| Other Info | http://localhost/api |
| URL | http://localhost/%20/rest%20/ |
| Method | GET |
| Parameter | |
| Attack | /%20/rest%20/ |
| Evidence | |
| Other Info | http://localhost/rest |
| URL | http://localhost/%20/rest/admin%20/ |
| Method | GET |
| Parameter | |
| Attack | /%20/rest/admin%20/ |
| Evidence | |
| Other Info | http://localhost/rest/admin |
| URL | http://localhost/%20/rest/products%20/ |
| Method | GET |
| Parameter | |
| Attack | /%20/rest/products%20/ |
| Evidence | |
| Other Info | http://localhost/rest/products |
| URL | http://localhost/%20/rest/user%20/ |
| Method | GET |
| Parameter | |
| Attack | /%20/rest/user%20/ |
| Evidence | |
| Other Info | http://localhost/rest/user |
| URL | http://localhost/%20/socket.io/%20/ |
| Method | GET |
| Parameter | |
| Attack | /%20/socket.io/%20/ |
| Evidence | |
| Other Info | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt2zq&sid=_HTNywfDgF4DlKk7AABd |
| URL | http://localhost/%20/socket.io/%20/ |
| Method | GET |
| Parameter | |
| Attack | /%20/socket.io/%20/ |
| Evidence | |
| Other Info | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt313&sid=_HTNywfDgF4DlKk7AABd |
| URL | http://localhost/%2e/ftp |
| Method | GET |
| Parameter | |
| Attack | /%2e/ftp |
| Evidence | |
| Other Info | http://localhost/ftp |
| Instances | 8 |
| Solution | |
| Reference |
https://www.acunetix.com/blog/articles/a-fresh-look-on-reverse-proxy-related-attacks/
https://i.blackhat.com/us-18/Wed-August-8/us-18-Orange-Tsai-Breaking-Parser-Logic-Take-Your-Path-Normalization-Off-And-Pop-0days-Out-2.pdf https://www.contextis.com/en/blog/server-technologies-reverse-proxy-bypass |
| CWE Id | |
| WASC Id | |
| Plugin Id | 40038 |
|
Medium |
CORS Misconfiguration |
|---|---|
| Description |
This CORS misconfiguration could allow an attacker to perform AJAX queries to the vulnerable website from a malicious page loaded by the victim's user agent.
In order to perform authenticated AJAX queries, the server must specify the header "Access-Control-Allow-Credentials: true" and the "Access-Control-Allow-Origin" header must be set to null or the malicious page's domain. Even if this misconfiguration doesn't allow authenticated AJAX requests, unauthenticated sensitive content can still be accessed (e.g intranet websites).
A malicious page can belong to a malicious website but also a trusted website with flaws (e.g XSS, support of HTTP without TLS allowing code injection through MITM, etc).
|
| URL | http://localhost |
| Method | GET |
| Parameter | |
| Attack | origin: http://Hck03Q7W.com |
| Evidence | |
| Other Info | |
| URL | http://localhost/ |
| Method | GET |
| Parameter | |
| Attack | origin: http://Hck03Q7W.com |
| Evidence | |
| Other Info | |
| URL | http://localhost/api/Challenges |
| Method | GET |
| Parameter | |
| Attack | origin: http://Hck03Q7W.com |
| Evidence | |
| Other Info | |
| URL | http://localhost/api/Challenges/?name=Score%20Board |
| Method | GET |
| Parameter | |
| Attack | origin: http://Hck03Q7W.com |
| Evidence | |
| Other Info | |
| URL | http://localhost/api/Quantitys |
| Method | GET |
| Parameter | |
| Attack | origin: http://Hck03Q7W.com |
| Evidence | |
| Other Info | |
| URL | http://localhost/api/Quantitys/ |
| Method | GET |
| Parameter | |
| Attack | origin: http://Hck03Q7W.com |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets |
| Method | GET |
| Parameter | |
| Attack | origin: http://Hck03Q7W.com |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/i18n |
| Method | GET |
| Parameter | |
| Attack | origin: http://Hck03Q7W.com |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/i18n/en.json |
| Method | GET |
| Parameter | |
| Attack | origin: http://Hck03Q7W.com |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/public |
| Method | GET |
| Parameter | |
| Attack | origin: http://Hck03Q7W.com |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/public/favicon_js.ico |
| Method | GET |
| Parameter | |
| Attack | origin: http://Hck03Q7W.com |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/public/images |
| Method | GET |
| Parameter | |
| Attack | origin: http://Hck03Q7W.com |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/public/images/hackingInstructor.png |
| Method | GET |
| Parameter | |
| Attack | origin: http://Hck03Q7W.com |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/public/images/JuiceShop_Logo.png |
| Method | GET |
| Parameter | |
| Attack | origin: http://Hck03Q7W.com |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/public/images/products |
| Method | GET |
| Parameter | |
| Attack | origin: http://Hck03Q7W.com |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/public/images/products/apple_juice.jpg |
| Method | GET |
| Parameter | |
| Attack | origin: http://Hck03Q7W.com |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/public/images/products/apple_pressings.jpg |
| Method | GET |
| Parameter | |
| Attack | origin: http://Hck03Q7W.com |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/public/images/products/artwork2.jpg |
| Method | GET |
| Parameter | |
| Attack | origin: http://Hck03Q7W.com |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/public/images/products/banana_juice.jpg |
| Method | GET |
| Parameter | |
| Attack | origin: http://Hck03Q7W.com |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/public/images/products/carrot_juice.jpeg |
| Method | GET |
| Parameter | |
| Attack | origin: http://Hck03Q7W.com |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/public/images/products/eggfruit_juice.jpg |
| Method | GET |
| Parameter | |
| Attack | origin: http://Hck03Q7W.com |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/public/images/products/fan_facemask.jpg |
| Method | GET |
| Parameter | |
| Attack | origin: http://Hck03Q7W.com |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/public/images/products/fruit_press.jpg |
| Method | GET |
| Parameter | |
| Attack | origin: http://Hck03Q7W.com |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/public/images/products/green_smoothie.jpg |
| Method | GET |
| Parameter | |
| Attack | origin: http://Hck03Q7W.com |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/public/images/products/lemon_juice.jpg |
| Method | GET |
| Parameter | |
| Attack | origin: http://Hck03Q7W.com |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/public/images/products/melon_bike.jpeg |
| Method | GET |
| Parameter | |
| Attack | origin: http://Hck03Q7W.com |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/public/images/products/permafrost.jpg |
| Method | GET |
| Parameter | |
| Attack | origin: http://Hck03Q7W.com |
| Evidence | |
| Other Info | |
| URL | http://localhost/font-mfizz.woff |
| Method | GET |
| Parameter | |
| Attack | origin: http://Hck03Q7W.com |
| Evidence | |
| Other Info | |
| URL | http://localhost/main.js |
| Method | GET |
| Parameter | |
| Attack | origin: http://Hck03Q7W.com |
| Evidence | |
| Other Info | |
| URL | http://localhost/MaterialIcons-Regular.woff2 |
| Method | GET |
| Parameter | |
| Attack | origin: http://Hck03Q7W.com |
| Evidence | |
| Other Info | |
| URL | http://localhost/polyfills.js |
| Method | GET |
| Parameter | |
| Attack | origin: http://Hck03Q7W.com |
| Evidence | |
| Other Info | |
| URL | http://localhost/rest/admin/application-configuration |
| Method | GET |
| Parameter | |
| Attack | origin: http://Hck03Q7W.com |
| Evidence | |
| Other Info | |
| URL | http://localhost/rest/admin/application-version |
| Method | GET |
| Parameter | |
| Attack | origin: http://Hck03Q7W.com |
| Evidence | |
| Other Info | |
| URL | http://localhost/rest/captcha |
| Method | GET |
| Parameter | |
| Attack | origin: http://Hck03Q7W.com |
| Evidence | |
| Other Info | |
| URL | http://localhost/rest/captcha/ |
| Method | GET |
| Parameter | |
| Attack | origin: http://Hck03Q7W.com |
| Evidence | |
| Other Info | |
| URL | http://localhost/rest/languages |
| Method | GET |
| Parameter | |
| Attack | origin: http://Hck03Q7W.com |
| Evidence | |
| Other Info | |
| URL | http://localhost/rest/products/search?q= |
| Method | GET |
| Parameter | |
| Attack | origin: http://Hck03Q7W.com |
| Evidence | |
| Other Info | |
| URL | http://localhost/rest/user/whoami |
| Method | GET |
| Parameter | |
| Attack | origin: http://Hck03Q7W.com |
| Evidence | |
| Other Info | |
| URL | http://localhost/robots.txt |
| Method | GET |
| Parameter | |
| Attack | origin: http://Hck03Q7W.com |
| Evidence | |
| Other Info | |
| URL | http://localhost/runtime.js |
| Method | GET |
| Parameter | |
| Attack | origin: http://Hck03Q7W.com |
| Evidence | |
| Other Info | |
| URL | http://localhost/sitemap.xml |
| Method | GET |
| Parameter | |
| Attack | origin: http://Hck03Q7W.com |
| Evidence | |
| Other Info | |
| URL | http://localhost/socket.io |
| Method | GET |
| Parameter | |
| Attack | origin: http://Hck03Q7W.com |
| Evidence | |
| Other Info | |
| URL | http://localhost/styles.css |
| Method | GET |
| Parameter | |
| Attack | origin: http://Hck03Q7W.com |
| Evidence | |
| Other Info | |
| URL | http://localhost/vendor.js |
| Method | GET |
| Parameter | |
| Attack | origin: http://Hck03Q7W.com |
| Evidence | |
| Other Info | |
| Instances | 44 |
| Solution |
If a web resource contains sensitive information, the origin should be properly specified in the Access-Control-Allow-Origin header. Only trusted websites needing this resource should be specified in this header, with the most secured protocol supported.
|
| Reference |
https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS
https://portswigger.net/web-security/cors |
| CWE Id | 942 |
| WASC Id | 14 |
| Plugin Id | 40040 |
|
Medium |
Cross-Domain Misconfiguration |
|---|---|
| Description |
Web browser data loading may be possible, due to a Cross Origin Resource Sharing (CORS) misconfiguration on the web server
|
| URL | http://localhost |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost/ |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost/api/Challenges/?name=Score%20Board |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost/api/Quantitys/ |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost/assets/i18n/en.json |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost/assets/public/favicon_js.ico |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost/assets/public/images/hackingInstructor.png |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost/assets/public/images/JuiceShop_Logo.png |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost/assets/public/images/products/apple_juice.jpg |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost/assets/public/images/products/apple_pressings.jpg |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost/assets/public/images/products/artwork2.jpg |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost/assets/public/images/products/banana_juice.jpg |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost/assets/public/images/products/carrot_juice.jpeg |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost/assets/public/images/products/eggfruit_juice.jpg |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost/assets/public/images/products/fan_facemask.jpg |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost/assets/public/images/products/fruit_press.jpg |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost/assets/public/images/products/green_smoothie.jpg |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost/assets/public/images/products/lemon_juice.jpg |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost/assets/public/images/products/melon_bike.jpeg |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost/assets/public/images/products/permafrost.jpg |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost/font-mfizz.woff |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost/main.js |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost/MaterialIcons-Regular.woff2 |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost/polyfills.js |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost/rest/admin/application-configuration |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost/rest/admin/application-version |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost/rest/captcha/ |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost/rest/languages |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost/rest/products/search?q= |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost/rest/user/whoami |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost/robots.txt |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost/runtime.js |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost/sitemap.xml |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost/styles.css |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost/vendor.js |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/vendor.js |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| Instances | 36 |
| Solution |
Ensure that sensitive data is not available in an unauthenticated manner (using IP address white-listing, for instance).
Configure the "Access-Control-Allow-Origin" HTTP header to a more restrictive set of domains, or remove all CORS headers entirely, to allow the web browser to enforce the Same Origin Policy (SOP) in a more restrictive manner.
|
| Reference | https://vulncat.fortify.com/en/detail?id=desc.config.dotnet.html5_overly_permissive_cors_policy |
| CWE Id | 264 |
| WASC Id | 14 |
| Plugin Id | 10098 |
|
Medium |
ELMAH Information Leak |
|---|---|
| Description |
The Error Logging Modules and Handlers (ELMAH [elmah.axd]) HTTP Module was found to be available. This module can leak a significant amount of valuable information.
|
| URL | http://localhost:3000/elmah.axd |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | HTTP/1.1 200 OK |
| Other Info | |
| Instances | 1 |
| Solution |
Consider whether or not ELMAH is actually required in production, if it isn't then disable it. If it is then ensure access to it requires authentication and authorization. See also: https://elmah.github.io/a/securing-error-log-pages/
|
| Reference |
https://www.troyhunt.com/aspnet-session-hijacking-with-google/
https://www.nuget.org/packages/elmah https://elmah.github.io/ |
| CWE Id | 94 |
| WASC Id | 14 |
| Plugin Id | 40028 |
|
Medium |
HTTP Only Site |
|---|---|
| Description |
The site is only served under HTTP and not HTTPS.
|
| URL | http://localhost:3000 |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | Failed to connect. ZAP attempted to connect via: https://localhost:3000 |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt313&sid=_HTNywfDgF4DlKk7AABd |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | Failed to connect. ZAP attempted to connect via: https://localhost/socket.io/ |
| Instances | 2 |
| Solution |
Configure your web or application server to use SSL (https).
|
| Reference |
https://cheatsheetseries.owasp.org/cheatsheets/Transport_Layer_Protection_Cheat_Sheet.html
https://letsencrypt.org/ |
| CWE Id | 311 |
| WASC Id | 4 |
| Plugin Id | 10106 |
|
Medium |
Proxy Disclosure |
|---|---|
| Description |
1 proxy server(s) were detected or fingerprinted. This information helps a potential attacker to determine
- A list of targets for an attack against the application.
- Potential vulnerabilities on the proxy servers that service the application.
- The presence or absence of any proxy-based components that might cause attacks against the application to be detected, prevented, or mitigated.
|
| URL | http://localhost |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Other Info | Using the TRACE, OPTIONS, and TRACK methods, the following proxy servers have been identified between ZAP and the application/web server: - Apache/2.4.59 (Debian) The following web/application server has been identified: - Apache/2.4.59 (Debian) |
| URL | http://localhost/ |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Other Info | Using the TRACE, OPTIONS, and TRACK methods, the following proxy servers have been identified between ZAP and the application/web server: - Apache/2.4.59 (Debian) The following web/application server has been identified: - Apache/2.4.59 (Debian) |
| URL | http://localhost/api |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Other Info | Using the TRACE, OPTIONS, and TRACK methods, the following proxy servers have been identified between ZAP and the application/web server: - Apache/2.4.59 (Debian) The following web/application server has been identified: - Apache/2.4.59 (Debian) |
| URL | http://localhost/api/Challenges |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Other Info | Using the TRACE, OPTIONS, and TRACK methods, the following proxy servers have been identified between ZAP and the application/web server: - Apache/2.4.59 (Debian) The following web/application server has been identified: - Apache/2.4.59 (Debian) |
| URL | http://localhost/api/Challenges/?name=Score%20Board |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Other Info | Using the TRACE, OPTIONS, and TRACK methods, the following proxy servers have been identified between ZAP and the application/web server: - Apache/2.4.59 (Debian) The following web/application server has been identified: - Apache/2.4.59 (Debian) |
| URL | http://localhost/api/Quantitys |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Other Info | Using the TRACE, OPTIONS, and TRACK methods, the following proxy servers have been identified between ZAP and the application/web server: - Apache/2.4.59 (Debian) The following web/application server has been identified: - Apache/2.4.59 (Debian) |
| URL | http://localhost/api/Quantitys/ |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Other Info | Using the TRACE, OPTIONS, and TRACK methods, the following proxy servers have been identified between ZAP and the application/web server: - Apache/2.4.59 (Debian) The following web/application server has been identified: - Apache/2.4.59 (Debian) |
| URL | http://localhost/assets |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Other Info | Using the TRACE, OPTIONS, and TRACK methods, the following proxy servers have been identified between ZAP and the application/web server: - Apache/2.4.59 (Debian) The following web/application server has been identified: - Apache/2.4.59 (Debian) |
| URL | http://localhost/assets/i18n |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Other Info | Using the TRACE, OPTIONS, and TRACK methods, the following proxy servers have been identified between ZAP and the application/web server: - Apache/2.4.59 (Debian) The following web/application server has been identified: - Apache/2.4.59 (Debian) |
| URL | http://localhost/assets/i18n/en.json |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Other Info | Using the TRACE, OPTIONS, and TRACK methods, the following proxy servers have been identified between ZAP and the application/web server: - Apache/2.4.59 (Debian) - Apache/2.4.59 (Debian) The following web/application server has been identified: - Apache/2.4.59 (Debian) |
| URL | http://localhost/assets/public |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Other Info | Using the TRACE, OPTIONS, and TRACK methods, the following proxy servers have been identified between ZAP and the application/web server: - Apache/2.4.59 (Debian) The following web/application server has been identified: - Apache/2.4.59 (Debian) |
| URL | http://localhost/assets/public/favicon_js.ico |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Other Info | Using the TRACE, OPTIONS, and TRACK methods, the following proxy servers have been identified between ZAP and the application/web server: - Apache/2.4.59 (Debian) The following web/application server has been identified: - Apache/2.4.59 (Debian) |
| URL | http://localhost/assets/public/images |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Other Info | Using the TRACE, OPTIONS, and TRACK methods, the following proxy servers have been identified between ZAP and the application/web server: - Apache/2.4.59 (Debian) The following web/application server has been identified: - Apache/2.4.59 (Debian) |
| URL | http://localhost/assets/public/images/hackingInstructor.png |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Other Info | Using the TRACE, OPTIONS, and TRACK methods, the following proxy servers have been identified between ZAP and the application/web server: - Apache/2.4.59 (Debian) The following web/application server has been identified: - Apache/2.4.59 (Debian) |
| URL | http://localhost/assets/public/images/JuiceShop_Logo.png |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Other Info | Using the TRACE, OPTIONS, and TRACK methods, the following proxy servers have been identified between ZAP and the application/web server: - Apache/2.4.59 (Debian) The following web/application server has been identified: - Apache/2.4.59 (Debian) |
| URL | http://localhost/assets/public/images/products |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Other Info | Using the TRACE, OPTIONS, and TRACK methods, the following proxy servers have been identified between ZAP and the application/web server: - Apache/2.4.59 (Debian) The following web/application server has been identified: - Apache/2.4.59 (Debian) |
| URL | http://localhost/assets/public/images/products/apple_juice.jpg |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Other Info | Using the TRACE, OPTIONS, and TRACK methods, the following proxy servers have been identified between ZAP and the application/web server: - Apache/2.4.59 (Debian) The following web/application server has been identified: - Apache/2.4.59 (Debian) |
| URL | http://localhost/assets/public/images/products/apple_pressings.jpg |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Other Info | Using the TRACE, OPTIONS, and TRACK methods, the following proxy servers have been identified between ZAP and the application/web server: - Apache/2.4.59 (Debian) The following web/application server has been identified: - Apache/2.4.59 (Debian) |
| URL | http://localhost/assets/public/images/products/artwork2.jpg |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Other Info | Using the TRACE, OPTIONS, and TRACK methods, the following proxy servers have been identified between ZAP and the application/web server: - Apache/2.4.59 (Debian) - Apache/2.4.59 (Debian) The following web/application server has been identified: - Apache/2.4.59 (Debian) |
| URL | http://localhost/assets/public/images/products/banana_juice.jpg |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Other Info | Using the TRACE, OPTIONS, and TRACK methods, the following proxy servers have been identified between ZAP and the application/web server: - Apache/2.4.59 (Debian) The following web/application server has been identified: - Apache/2.4.59 (Debian) |
| URL | http://localhost/assets/public/images/products/carrot_juice.jpeg |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Other Info | Using the TRACE, OPTIONS, and TRACK methods, the following proxy servers have been identified between ZAP and the application/web server: - Apache/2.4.59 (Debian) The following web/application server has been identified: - Apache/2.4.59 (Debian) |
| URL | http://localhost/assets/public/images/products/eggfruit_juice.jpg |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Other Info | Using the TRACE, OPTIONS, and TRACK methods, the following proxy servers have been identified between ZAP and the application/web server: - Apache/2.4.59 (Debian) The following web/application server has been identified: - Apache/2.4.59 (Debian) |
| URL | http://localhost/assets/public/images/products/fan_facemask.jpg |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Other Info | Using the TRACE, OPTIONS, and TRACK methods, the following proxy servers have been identified between ZAP and the application/web server: - Apache/2.4.59 (Debian) The following web/application server has been identified: - Apache/2.4.59 (Debian) |
| URL | http://localhost/assets/public/images/products/fruit_press.jpg |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Other Info | Using the TRACE, OPTIONS, and TRACK methods, the following proxy servers have been identified between ZAP and the application/web server: - Apache/2.4.59 (Debian) The following web/application server has been identified: - Apache/2.4.59 (Debian) |
| URL | http://localhost/assets/public/images/products/green_smoothie.jpg |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Other Info | Using the TRACE, OPTIONS, and TRACK methods, the following proxy servers have been identified between ZAP and the application/web server: - Apache/2.4.59 (Debian) The following web/application server has been identified: - Apache/2.4.59 (Debian) |
| URL | http://localhost/assets/public/images/products/lemon_juice.jpg |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Other Info | Using the TRACE, OPTIONS, and TRACK methods, the following proxy servers have been identified between ZAP and the application/web server: - Apache/2.4.59 (Debian) The following web/application server has been identified: - Apache/2.4.59 (Debian) |
| URL | http://localhost/assets/public/images/products/melon_bike.jpeg |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Other Info | Using the TRACE, OPTIONS, and TRACK methods, the following proxy servers have been identified between ZAP and the application/web server: - Apache/2.4.59 (Debian) The following web/application server has been identified: - Apache/2.4.59 (Debian) |
| URL | http://localhost/font-mfizz.woff |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Other Info | Using the TRACE, OPTIONS, and TRACK methods, the following proxy servers have been identified between ZAP and the application/web server: - Apache/2.4.59 (Debian) The following web/application server has been identified: - Apache/2.4.59 (Debian) |
| URL | http://localhost/main.js |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Other Info | Using the TRACE, OPTIONS, and TRACK methods, the following proxy servers have been identified between ZAP and the application/web server: - Apache/2.4.59 (Debian) The following web/application server has been identified: - Apache/2.4.59 (Debian) |
| URL | http://localhost/MaterialIcons-Regular.woff2 |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Other Info | Using the TRACE, OPTIONS, and TRACK methods, the following proxy servers have been identified between ZAP and the application/web server: - Apache/2.4.59 (Debian) The following web/application server has been identified: - Apache/2.4.59 (Debian) |
| URL | http://localhost/polyfills.js |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Other Info | Using the TRACE, OPTIONS, and TRACK methods, the following proxy servers have been identified between ZAP and the application/web server: - Apache/2.4.59 (Debian) The following web/application server has been identified: - Apache/2.4.59 (Debian) |
| URL | http://localhost/rest |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Other Info | Using the TRACE, OPTIONS, and TRACK methods, the following proxy servers have been identified between ZAP and the application/web server: - Apache/2.4.59 (Debian) The following web/application server has been identified: - Apache/2.4.59 (Debian) |
| URL | http://localhost/rest/admin |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Other Info | Using the TRACE, OPTIONS, and TRACK methods, the following proxy servers have been identified between ZAP and the application/web server: - Apache/2.4.59 (Debian) The following web/application server has been identified: - Apache/2.4.59 (Debian) |
| URL | http://localhost/rest/admin/application-configuration |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Other Info | Using the TRACE, OPTIONS, and TRACK methods, the following proxy servers have been identified between ZAP and the application/web server: - Apache/2.4.59 (Debian) The following web/application server has been identified: - Apache/2.4.59 (Debian) |
| URL | http://localhost/rest/admin/application-version |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Other Info | Using the TRACE, OPTIONS, and TRACK methods, the following proxy servers have been identified between ZAP and the application/web server: - Apache/2.4.59 (Debian) The following web/application server has been identified: - Apache/2.4.59 (Debian) |
| URL | http://localhost/rest/captcha |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Other Info | Using the TRACE, OPTIONS, and TRACK methods, the following proxy servers have been identified between ZAP and the application/web server: - Apache/2.4.59 (Debian) The following web/application server has been identified: - Apache/2.4.59 (Debian) |
| URL | http://localhost/rest/captcha/ |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Other Info | Using the TRACE, OPTIONS, and TRACK methods, the following proxy servers have been identified between ZAP and the application/web server: - Apache/2.4.59 (Debian) The following web/application server has been identified: - Apache/2.4.59 (Debian) |
| URL | http://localhost/rest/languages |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Other Info | Using the TRACE, OPTIONS, and TRACK methods, the following proxy servers have been identified between ZAP and the application/web server: - Apache/2.4.59 (Debian) The following web/application server has been identified: - Apache/2.4.59 (Debian) |
| URL | http://localhost/rest/products |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Other Info | Using the TRACE, OPTIONS, and TRACK methods, the following proxy servers have been identified between ZAP and the application/web server: - Apache/2.4.59 (Debian) The following web/application server has been identified: - Apache/2.4.59 (Debian) |
| URL | http://localhost/rest/products/search?q= |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Other Info | Using the TRACE, OPTIONS, and TRACK methods, the following proxy servers have been identified between ZAP and the application/web server: - Apache/2.4.59 (Debian) The following web/application server has been identified: - Apache/2.4.59 (Debian) |
| URL | http://localhost/rest/user |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Other Info | Using the TRACE, OPTIONS, and TRACK methods, the following proxy servers have been identified between ZAP and the application/web server: - Apache/2.4.59 (Debian) The following web/application server has been identified: - Apache/2.4.59 (Debian) |
| URL | http://localhost/rest/user/whoami |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Other Info | Using the TRACE, OPTIONS, and TRACK methods, the following proxy servers have been identified between ZAP and the application/web server: - Apache/2.4.59 (Debian) The following web/application server has been identified: - Apache/2.4.59 (Debian) |
| URL | http://localhost/robots.txt |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Other Info | Using the TRACE, OPTIONS, and TRACK methods, the following proxy servers have been identified between ZAP and the application/web server: - Apache/2.4.59 (Debian) The following web/application server has been identified: - Apache/2.4.59 (Debian) |
| URL | http://localhost/runtime.js |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Other Info | Using the TRACE, OPTIONS, and TRACK methods, the following proxy servers have been identified between ZAP and the application/web server: - Apache/2.4.59 (Debian) The following web/application server has been identified: - Apache/2.4.59 (Debian) |
| URL | http://localhost/sitemap.xml |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Other Info | Using the TRACE, OPTIONS, and TRACK methods, the following proxy servers have been identified between ZAP and the application/web server: - Apache/2.4.59 (Debian) The following web/application server has been identified: - Apache/2.4.59 (Debian) |
| URL | http://localhost/socket.io |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Other Info | Using the TRACE, OPTIONS, and TRACK methods, the following proxy servers have been identified between ZAP and the application/web server: - Apache/2.4.59 (Debian) The following web/application server has been identified: - Apache/2.4.59 (Debian) |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntKnM&sid=lp91BNQi2FBKdcbsAAEi |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Other Info | Using the TRACE, OPTIONS, and TRACK methods, the following proxy servers have been identified between ZAP and the application/web server: - Apache/2.4.59 (Debian) The following web/application server has been identified: - Apache/2.4.59 (Debian) |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntLBn |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Other Info | Using the TRACE, OPTIONS, and TRACK methods, the following proxy servers have been identified between ZAP and the application/web server: - Apache/2.4.59 (Debian) The following web/application server has been identified: - Apache/2.4.59 (Debian) |
| URL | http://localhost/socket.io/?EIO=4&transport=websocket&sid=_HTNywfDgF4DlKk7AABd |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Other Info | Using the TRACE, OPTIONS, and TRACK methods, the following proxy servers have been identified between ZAP and the application/web server: - Apache/2.4.59 (Debian) The following web/application server has been identified: - Apache/2.4.59 (Debian) |
| URL | http://localhost/styles.css |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Other Info | Using the TRACE, OPTIONS, and TRACK methods, the following proxy servers have been identified between ZAP and the application/web server: - Apache/2.4.59 (Debian) The following web/application server has been identified: - Apache/2.4.59 (Debian) |
| URL | http://localhost/vendor.js |
| Method | GET |
| Parameter | |
| Attack | TRACE, OPTIONS methods with 'Max-Forwards' header. TRACK method. |
| Evidence | |
| Other Info | Using the TRACE, OPTIONS, and TRACK methods, the following proxy servers have been identified between ZAP and the application/web server: - Apache/2.4.59 (Debian) The following web/application server has been identified: - Apache/2.4.59 (Debian) |
| Instances | 51 |
| Solution |
Disable the 'TRACE' method on the proxy servers, as well as the origin web/application server.
Disable the 'OPTIONS' method on the proxy servers, as well as the origin web/application server, if it is not required for other purposes, such as 'CORS' (Cross Origin Resource Sharing).
Configure the web and application servers with custom error pages, to prevent 'fingerprintable' product-specific error pages being leaked to the user in the event of HTTP errors, such as 'TRACK' requests for non-existent pages.
Configure all proxies, application servers, and web servers to prevent disclosure of the technology and version information in the 'Server' and 'X-Powered-By' HTTP response headers.
|
| Reference | https://tools.ietf.org/html/rfc7231#section-5.1.2 |
| CWE Id | 200 |
| WASC Id | 45 |
| Plugin Id | 40025 |
|
Medium |
Source Code Disclosure - SVN |
|---|---|
| Description |
The source code for the current page was disclosed by the web server.
|
| URL | http://localhost:3000/assets |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/.svn/text-base/assets.svn-base |
| Evidence | |
| Other Info | The source code for [assets] was found at [http://localhost:3000/.svn/text-base/assets.svn-base] |
| URL | http://localhost:3000/assets/public |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/assets/.svn/text-base/public.svn-base |
| Evidence | |
| Other Info | The source code for [public] was found at [http://localhost:3000/assets/.svn/text-base/public.svn-base] |
| URL | http://localhost:3000/assets/public/favicon_js.ico |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/assets/public/.svn/text-base/favicon_js.ico.svn-base |
| Evidence | |
| Other Info | The source code for [favicon_js.ico] was found at [http://localhost:3000/assets/public/.svn/text-base/favicon_js.ico.svn-base] |
| URL | http://localhost:3000/ftp |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/.svn/text-base/ftp.svn-base |
| Evidence | |
| Other Info | The source code for [ftp] was found at [http://localhost:3000/.svn/text-base/ftp.svn-base] |
| URL | http://localhost:3000/ftp/acquisitions.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/.svn/text-base/acquisitions.md.svn-base |
| Evidence | |
| Other Info | The source code for [acquisitions.md] was found at [http://localhost:3000/ftp/.svn/text-base/acquisitions.md.svn-base] |
| URL | http://localhost:3000/ftp/announcement_encrypted.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/.svn/text-base/announcement_encrypted.md.svn-base |
| Evidence | |
| Other Info | The source code for [announcement_encrypted.md] was found at [http://localhost:3000/ftp/.svn/text-base/announcement_encrypted.md.svn-base] |
| URL | http://localhost:3000/ftp/coupons_2013.md.bak |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/.svn/text-base/coupons_2013.md.bak.svn-base |
| Evidence | |
| Other Info | The source code for [coupons_2013.md.bak] was found at [http://localhost:3000/ftp/.svn/text-base/coupons_2013.md.bak.svn-base] |
| URL | http://localhost:3000/ftp/eastere.gg |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/.svn/text-base/eastere.gg.svn-base |
| Evidence | |
| Other Info | The source code for [eastere.gg] was found at [http://localhost:3000/ftp/.svn/text-base/eastere.gg.svn-base] |
| URL | http://localhost:3000/ftp/encrypt.pyc |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/.svn/text-base/encrypt.pyc.svn-base |
| Evidence | |
| Other Info | The source code for [encrypt.pyc] was found at [http://localhost:3000/ftp/.svn/text-base/encrypt.pyc.svn-base] |
| URL | http://localhost:3000/ftp/incident-support.kdbx |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/.svn/text-base/incident-support.kdbx.svn-base |
| Evidence | |
| Other Info | The source code for [incident-support.kdbx] was found at [http://localhost:3000/ftp/.svn/text-base/incident-support.kdbx.svn-base] |
| URL | http://localhost:3000/ftp/legal.md |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/.svn/text-base/legal.md.svn-base |
| Evidence | |
| Other Info | The source code for [legal.md] was found at [http://localhost:3000/ftp/.svn/text-base/legal.md.svn-base] |
| URL | http://localhost:3000/ftp/package.json.bak |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/.svn/text-base/package.json.bak.svn-base |
| Evidence | |
| Other Info | The source code for [package.json.bak] was found at [http://localhost:3000/ftp/.svn/text-base/package.json.bak.svn-base] |
| URL | http://localhost:3000/ftp/quarantine |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/.svn/text-base/quarantine.svn-base |
| Evidence | |
| Other Info | The source code for [quarantine] was found at [http://localhost:3000/ftp/.svn/text-base/quarantine.svn-base] |
| URL | http://localhost:3000/ftp/suspicious_errors.yml |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/ftp/.svn/text-base/suspicious_errors.yml.svn-base |
| Evidence | |
| Other Info | The source code for [suspicious_errors.yml] was found at [http://localhost:3000/ftp/.svn/text-base/suspicious_errors.yml.svn-base] |
| URL | http://localhost:3000/main.js |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/.svn/text-base/main.js.svn-base |
| Evidence | |
| Other Info | The source code for [main.js] was found at [http://localhost:3000/.svn/text-base/main.js.svn-base] |
| URL | http://localhost:3000/polyfills.js |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/.svn/text-base/polyfills.js.svn-base |
| Evidence | |
| Other Info | The source code for [polyfills.js] was found at [http://localhost:3000/.svn/text-base/polyfills.js.svn-base] |
| URL | http://localhost:3000/robots.txt |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/.svn/text-base/robots.txt.svn-base |
| Evidence | |
| Other Info | The source code for [robots.txt] was found at [http://localhost:3000/.svn/text-base/robots.txt.svn-base] |
| URL | http://localhost:3000/runtime.js |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/.svn/text-base/runtime.js.svn-base |
| Evidence | |
| Other Info | The source code for [runtime.js] was found at [http://localhost:3000/.svn/text-base/runtime.js.svn-base] |
| URL | http://localhost:3000/styles.css |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/.svn/text-base/styles.css.svn-base |
| Evidence | |
| Other Info | The source code for [styles.css] was found at [http://localhost:3000/.svn/text-base/styles.css.svn-base] |
| URL | http://localhost:3000/vendor.js |
| Method | GET |
| Parameter | |
| Attack | http://localhost:3000/.svn/text-base/vendor.js.svn-base |
| Evidence | |
| Other Info | The source code for [vendor.js] was found at [http://localhost:3000/.svn/text-base/vendor.js.svn-base] |
| Instances | 20 |
| Solution |
Ensure that SVN metadata files are not deployed to the web server or application server
|
| Reference |
https://owasp.org/www-community/attacks/Forced_browsing
https://cwe.mitre.org/data/definitions/425.html |
| CWE Id | 541 |
| WASC Id | 34 |
| Plugin Id | 42 |
|
Medium |
Web Cache Deception |
|---|---|
| Description |
Web cache deception may be possible. It may be possible for unauthorised user to view sensitive data on this page.
|
| URL | http://localhost/assets |
| Method | GET |
| Parameter | |
| Attack | /test.css,/test.jpg,/test.js,/test.html,/test.gif,/test.png,/test.svg,/test.php,/test.txt,/test.pdf,/test.asp, |
| Evidence | |
| Other Info | Cached Authorised Response and Unauthorised Response are similar. |
| URL | http://localhost/assets/i18n |
| Method | GET |
| Parameter | |
| Attack | /test.css,/test.jpg,/test.js,/test.html,/test.gif,/test.png,/test.svg,/test.php,/test.txt,/test.pdf,/test.asp, |
| Evidence | |
| Other Info | Cached Authorised Response and Unauthorised Response are similar. |
| URL | http://localhost/assets/public |
| Method | GET |
| Parameter | |
| Attack | /test.css,/test.jpg,/test.js,/test.html,/test.gif,/test.png,/test.svg,/test.php,/test.txt,/test.pdf,/test.asp, |
| Evidence | |
| Other Info | Cached Authorised Response and Unauthorised Response are similar. |
| URL | http://localhost/assets/public/images |
| Method | GET |
| Parameter | |
| Attack | /test.css,/test.jpg,/test.js,/test.html,/test.gif,/test.png,/test.svg,/test.php,/test.txt,/test.pdf,/test.asp, |
| Evidence | |
| Other Info | Cached Authorised Response and Unauthorised Response are similar. |
| URL | http://localhost/assets/public/images/products |
| Method | GET |
| Parameter | |
| Attack | /test.css,/test.jpg,/test.js,/test.html,/test.gif,/test.png,/test.svg,/test.php,/test.txt,/test.pdf,/test.asp, |
| Evidence | |
| Other Info | Cached Authorised Response and Unauthorised Response are similar. |
| Instances | 5 |
| Solution |
It is strongly advised to refrain from classifying file types, such as images or stylesheets solely by their URL and file extension. Instead you should make sure that files are cached based on their Content-Type header.
|
| Reference |
https://blogs.akamai.com/2017/03/on-web-cache-deception-attacks.html
https://www.netsparker.com/web-vulnerability-scanner/vulnerabilities/web-cache-deception/ |
| CWE Id | |
| WASC Id | |
| Plugin Id | 40039 |
|
Medium |
XSLT Injection |
|---|---|
| Description |
Injection using XSL transformations may be possible, and may allow an attacker to read system information, read and write files, or execute arbitrary code.
|
| URL | http://localhost/api/Challenges/?name=%3Cxsl%3Avalue-of+select%3D%22system-property%28%27xsl%3Avendor%27%29%22%2F%3E |
| Method | GET |
| Parameter | name |
| Attack | <xsl:value-of select="system-property('xsl:vendor')"/> |
| Evidence | Apache |
| Other Info | The XSLT processor vendor name "Apache" was returned after an injection request. |
| URL | http://localhost/rest/products/search?q=%3Cxsl%3Avalue-of+select%3D%22system-property%28%27xsl%3Avendor%27%29%22%2F%3E |
| Method | GET |
| Parameter | q |
| Attack | <xsl:value-of select="system-property('xsl:vendor')"/> |
| Evidence | Apache |
| Other Info | The XSLT processor vendor name "Apache" was returned after an injection request. |
| URL | http://localhost/socket.io/?EIO=%3Cxsl%3Avalue-of+select%3D%22system-property%28%27xsl%3Avendor%27%29%22%2F%3E&transport=polling&t=O-ntKnM&sid=lp91BNQi2FBKdcbsAAEi |
| Method | GET |
| Parameter | EIO |
| Attack | <xsl:value-of select="system-property('xsl:vendor')"/> |
| Evidence | Apache |
| Other Info | The XSLT processor vendor name "Apache" was returned after an injection request. |
| URL | http://localhost/socket.io/?EIO=%3Cxsl%3Avalue-of+select%3D%22system-property%28%27xsl%3Avendor%27%29%22%2F%3E&transport=polling&t=O-ntLBn |
| Method | GET |
| Parameter | EIO |
| Attack | <xsl:value-of select="system-property('xsl:vendor')"/> |
| Evidence | Apache |
| Other Info | The XSLT processor vendor name "Apache" was returned after an injection request. |
| URL | http://localhost/socket.io/?EIO=%3Cxsl%3Avalue-of+select%3D%22system-property%28%27xsl%3Avendor%27%29%22%2F%3E&transport=websocket&sid=_HTNywfDgF4DlKk7AABd |
| Method | GET |
| Parameter | EIO |
| Attack | <xsl:value-of select="system-property('xsl:vendor')"/> |
| Evidence | Apache |
| Other Info | The XSLT processor vendor name "Apache" was returned after an injection request. |
| URL | http://localhost/socket.io/?EIO=4&transport=%3Cxsl%3Avalue-of+select%3D%22system-property%28%27xsl%3Avendor%27%29%22%2F%3E&sid=_HTNywfDgF4DlKk7AABd |
| Method | GET |
| Parameter | transport |
| Attack | <xsl:value-of select="system-property('xsl:vendor')"/> |
| Evidence | Apache |
| Other Info | The XSLT processor vendor name "Apache" was returned after an injection request. |
| URL | http://localhost/socket.io/?EIO=4&transport=%3Cxsl%3Avalue-of+select%3D%22system-property%28%27xsl%3Avendor%27%29%22%2F%3E&t=O-ntKnM&sid=lp91BNQi2FBKdcbsAAEi |
| Method | GET |
| Parameter | transport |
| Attack | <xsl:value-of select="system-property('xsl:vendor')"/> |
| Evidence | Apache |
| Other Info | The XSLT processor vendor name "Apache" was returned after an injection request. |
| URL | http://localhost/socket.io/?EIO=4&transport=%3Cxsl%3Avalue-of+select%3D%22system-property%28%27xsl%3Avendor%27%29%22%2F%3E&t=O-ntLBn |
| Method | GET |
| Parameter | transport |
| Attack | <xsl:value-of select="system-property('xsl:vendor')"/> |
| Evidence | Apache |
| Other Info | The XSLT processor vendor name "Apache" was returned after an injection request. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=%3Cxsl%3Avalue-of+select%3D%22system-property%28%27xsl%3Avendor%27%29%22%2F%3E |
| Method | GET |
| Parameter | t |
| Attack | <xsl:value-of select="system-property('xsl:vendor')"/> |
| Evidence | Apache |
| Other Info | The XSLT processor vendor name "Apache" was returned after an injection request. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=%3Cxsl%3Avalue-of+select%3D%22system-property%28%27xsl%3Avendor%27%29%22%2F%3E&sid=lp91BNQi2FBKdcbsAAEi |
| Method | GET |
| Parameter | t |
| Attack | <xsl:value-of select="system-property('xsl:vendor')"/> |
| Evidence | Apache |
| Other Info | The XSLT processor vendor name "Apache" was returned after an injection request. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntKnM&sid=%3Cxsl%3Avalue-of+select%3D%22system-property%28%27xsl%3Avendor%27%29%22%2F%3E |
| Method | GET |
| Parameter | sid |
| Attack | <xsl:value-of select="system-property('xsl:vendor')"/> |
| Evidence | Apache |
| Other Info | The XSLT processor vendor name "Apache" was returned after an injection request. |
| URL | http://localhost/socket.io/?EIO=4&transport=websocket&sid=%3Cxsl%3Avalue-of+select%3D%22system-property%28%27xsl%3Avendor%27%29%22%2F%3E |
| Method | GET |
| Parameter | sid |
| Attack | <xsl:value-of select="system-property('xsl:vendor')"/> |
| Evidence | Apache |
| Other Info | The XSLT processor vendor name "Apache" was returned after an injection request. |
| Instances | 12 |
| Solution |
Sanitize and analyze every user input coming from any client-side.
|
| Reference | https://www.contextis.com/blog/xslt-server-side-injection-attacks |
| CWE Id | 91 |
| WASC Id | 23 |
| Plugin Id | 90017 |
|
Low |
Cross-Domain JavaScript Source File Inclusion |
|---|---|
| Description |
The page includes one or more script files from a third-party domain.
|
| URL | http://localhost |
| Method | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Attack | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost |
| Method | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Attack | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost/ |
| Method | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Attack | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost/ |
| Method | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Attack | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost/sitemap.xml |
| Method | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Attack | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost/sitemap.xml |
| Method | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Attack | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| Instances | 6 |
| Solution |
Ensure JavaScript source files are loaded from only trusted sources, and the sources can't be controlled by end users of the application.
|
| Reference | |
| CWE Id | 829 |
| WASC Id | 15 |
| Plugin Id | 10017 |
|
Low |
Dangerous JS Functions |
|---|---|
| Description |
A dangerous JS function seems to be in use that would leave the site vulnerable.
|
| URL | http://localhost/main.js |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | bypassSecurityTrustHtml |
| Other Info | |
| URL | http://localhost/vendor.js |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | bypassSecurityTrustHtml |
| Other Info | |
| URL | http://localhost:3000/vendor.js |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | bypassSecurityTrustHtml |
| Other Info | |
| Instances | 3 |
| Solution |
See the references for security advice on the use of these functions.
|
| Reference | https://angular.io/guide/security |
| CWE Id | 749 |
| WASC Id | |
| Plugin Id | 10110 |
|
Low |
Deprecated Feature Policy Header Set |
|---|---|
| Description |
The header has now been renamed to Permissions-Policy.
|
| URL | http://localhost |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Feature-Policy |
| Other Info | |
| URL | http://localhost/ |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Feature-Policy |
| Other Info | |
| URL | http://localhost/main.js |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Feature-Policy |
| Other Info | |
| URL | http://localhost/polyfills.js |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Feature-Policy |
| Other Info | |
| URL | http://localhost/runtime.js |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Feature-Policy |
| Other Info | |
| URL | http://localhost/sitemap.xml |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Feature-Policy |
| Other Info | |
| URL | http://localhost/vendor.js |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Feature-Policy |
| Other Info | |
| URL | http://localhost:3000/vendor.js |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Feature-Policy |
| Other Info | |
| Instances | 8 |
| Solution |
Ensure that your web server, application server, load balancer, etc. is configured to set the Permissions-Policy header instead of the Feature-Policy header.
|
| Reference |
https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy
https://scotthelme.co.uk/goodbye-feature-policy-and-hello-permissions-policy/ |
| CWE Id | 16 |
| WASC Id | 15 |
| Plugin Id | 10063 |
|
Low |
In Page Banner Information Leak |
|---|---|
| Description |
The server returned a version banner string in the response content. Such information leaks may allow attackers to further target specific issues impacting the product and version in use.
|
| URL | http://localhost/ftp |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt9g-&sid=rCl3WRcO_v_Y_IxzAACL |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntB1b&sid=IdedA9hJFNvfzTMtAACb |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntK1L&sid=KsHu4V5_Mt54i6voAAEb |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=websocket&sid=IdedA9hJFNvfzTMtAACb |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=websocket&sid=rCl3WRcO_v_Y_IxzAACL |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt2zq&sid=_HTNywfDgF4DlKk7AABd |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt313&sid=_HTNywfDgF4DlKk7AABd |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt3Ap&sid=8iKQl3-XbwQ8Q7H6AABe |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt3BD&sid=8iKQl3-XbwQ8Q7H6AABe |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt3PD&sid=sfLyrEABQfuWghrZAABg |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt3Q0&sid=sfLyrEABQfuWghrZAABg |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt3tL&sid=se16NWe1d-Z-fjkgAABh |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt48g&sid=se16NWe1d-Z-fjkgAABh |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt4LB&sid=hsklRPecaE59c2Y9AABj |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt4Lh&sid=hsklRPecaE59c2Y9AABj |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt4sN&sid=yurJ1l5zKucq3wDKAABk |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt4zU&sid=yurJ1l5zKucq3wDKAABk |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt5DY&sid=cG5g8sFLqF2kXmsZAABl |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt5E9&sid=cG5g8sFLqF2kXmsZAABl |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt5OG&sid=17JK6rK0J7_wvSNzAABm |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt5on&sid=4k9GPEQVeHvPhG9uAABn |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt5oP&sid=4k9GPEQVeHvPhG9uAABn |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt5SA&sid=17JK6rK0J7_wvSNzAABm |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt68t&sid=tx1rkX9aOjqRN9RWAABp |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt6_u&sid=07vWUEAMA-Br7bLzAABv |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt6AY&sid=tx1rkX9aOjqRN9RWAABp |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt6df&sid=5cfhwLMbu0yP0A1zAABs |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt6dP&sid=5cfhwLMbu0yP0A1zAABs |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt6G3&sid=L25QmBGhVTg2EjtDAABo |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt6n0&sid=okuvbDaOC-n2_DIgAABt |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt6nE&sid=okuvbDaOC-n2_DIgAABt |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt6Qa&sid=L25QmBGhVTg2EjtDAABo |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt6rz&sid=CjA1wx8FUxB1pFQdAABu |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt6sF&sid=CjA1wx8FUxB1pFQdAABu |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt6U4&sid=qJdXNKtoYsT0QAjiAABq |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt6UV&sid=qJdXNKtoYsT0QAjiAABq |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt70S&sid=07vWUEAMA-Br7bLzAABv |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt7as&sid=GBXpm5ZcdmHSLz9AAAB2 |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt7bT&sid=GBXpm5ZcdmHSLz9AAAB2 |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt7Bu&sid=5zCBYeLCwP-WSoh8AABx |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt7CZ&sid=5zCBYeLCwP-WSoh8AABx |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt7DJ&sid=22T5wyWQI4-Jf-0DAABy |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt7E7&sid=22T5wyWQI4-Jf-0DAABy |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt7hF&sid=kA3nvrLSojIIGG9eAAB1 |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt7kr&sid=CgN0gehLyYAUD1qPAAB3 |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt7l6&sid=CgN0gehLyYAUD1qPAAB3 |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt7Mi&sid=_DEdckY6De2Hj83LAABz |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt7MQ&sid=_DEdckY6De2Hj83LAABz |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt7R4&sid=W1MAYSKN8ZYzWRDuAAB0 |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt7ru&sid=fr1eMQu4_I3Cfv6jAAB4 |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt7RW&sid=W1MAYSKN8ZYzWRDuAAB0 |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt7sH&sid=fr1eMQu4_I3Cfv6jAAB4 |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt7sP&sid=kA3nvrLSojIIGG9eAAB1 |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt8-7&sid=SjmPYzHU6Xpdw44FAACE |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt81b&sid=VCvIGio6ewJoUNTXAAB6 |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt81C&sid=VCvIGio6ewJoUNTXAAB6 |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt84a&sid=TTAcPtmiytbIk9hRAAB7 |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt84F&sid=TTAcPtmiytbIk9hRAAB7 |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt8_e&sid=vw-C-E1pQAZSuyPdAACD |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt8BM&sid=kEzCFqDvL8LKfqcBAAB8 |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt8Bo&sid=kEzCFqDvL8LKfqcBAAB8 |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt8E5&sid=aAxVgv5fNXMs8U4HAAB9 |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt8Ev&sid=aAxVgv5fNXMs8U4HAAB9 |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt8Lb&sid=VxrNs19ZuAOHMPewAAB- |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt8NC&sid=VxrNs19ZuAOHMPewAAB- |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt8Pv&sid=gc74_DWCWidDHV2qAAB_ |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt8Q3&sid=gc74_DWCWidDHV2qAAB_ |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt8Z4&sid=ie4oi9cRmUMGm2p-AACA |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt8Zd&sid=ie4oi9cRmUMGm2p-AACA |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt8zW&sid=SjmPYzHU6Xpdw44FAACE |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt9-s&sid=DP4c-Gohz_Q5sQvBAACO |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt9-X&sid=DP4c-Gohz_Q5sQvBAACO |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt9bB&sid=sKgT6e-dqTkx7FquAACJ |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt9bk&sid=sKgT6e-dqTkx7FquAACJ |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt9Dz&sid=KIUZT_JukxaSTcbgAACG |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt9eG&sid=Wpkpb0DVNRPLb0scAACK |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt9Ez&sid=KIUZT_JukxaSTcbgAACG |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt9ft&sid=Wpkpb0DVNRPLb0scAACK |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt9Fx&sid=Z_9ENk3ejQ-thQdgAACF |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt9gy&sid=rCl3WRcO_v_Y_IxzAACL |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt9ls&sid=8aCwX7gx3A5Yo0g7AACM |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt9mI&sid=8aCwX7gx3A5Yo0g7AACM |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt9MJ&sid=vw-C-E1pQAZSuyPdAACD |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt9p6&sid=rCl3WRcO_v_Y_IxzAACL |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt9Q5&sid=iFG_Zqg9N3wiFB1fAACI |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt9QT&sid=iFG_Zqg9N3wiFB1fAACI |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt9R1&sid=Z_9ENk3ejQ-thQdgAACF |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntA1v&sid=uK0G6ecpQZNOldVDAACP |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntA2Z&sid=uK0G6ecpQZNOldVDAACP |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntA3K&sid=AqmROLlOnCkyzZzsAACN |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntA6z&sid=skCL_nmjuRmLU-A-AACQ |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntA7G&sid=skCL_nmjuRmLU-A-AACQ |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntAad&sid=9Iaj3JpIEDTHm6T2AACW |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntAbM&sid=9Iaj3JpIEDTHm6T2AACW |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntAHn&sid=AqmROLlOnCkyzZzsAACN |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntAKH&sid=tF-LYrUliiO5YGPvAACS |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntAKw&sid=tF-LYrUliiO5YGPvAACS |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntAll&sid=olHWsFrHbnhya3HKAACV |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntAmb&sid=Bmfmiij_v5FiNbz3AACX |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntAmz&sid=Bmfmiij_v5FiNbz3AACX |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntAPJ&sid=z9fpD7Mi7MQ9hKRmAACT |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntARk&sid=z9fpD7Mi7MQ9hKRmAACT |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntAVh&sid=FeUHHIEaigCyKqzZAACU |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntAwb&sid=FBimnkL7-FReW0w2AACZ |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntAWI&sid=FeUHHIEaigCyKqzZAACU |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntAwn&sid=FBimnkL7-FReW0w2AACZ |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntAwP&sid=Lpnjq-u4CQ5wCO0YAACY |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntAwq&sid=Lpnjq-u4CQ5wCO0YAACY |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntAZW&sid=olHWsFrHbnhya3HKAACV |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntB12&sid=gJIOFKL615xzWKEDAACa |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntB1J&sid=gJIOFKL615xzWKEDAACa |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntB1X&sid=IdedA9hJFNvfzTMtAACb |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntB2C&sid=IdedA9hJFNvfzTMtAACb |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntB7s&sid=OY7jWTN4sJyT-H6TAACc |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntB8a&sid=OY7jWTN4sJyT-H6TAACc |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntBdb&sid=5ZJhtSnfEiVMIvVFAACh |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntBdK&sid=5ZJhtSnfEiVMIvVFAACh |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntBhl&sid=ax4eg6z2qnqvKhbwAACi |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntBhR&sid=ax4eg6z2qnqvKhbwAACi |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntBJf&sid=7FgVnDeZu0hQwVoMAACd |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntBJy&sid=JufnpKwhDhVpw3QRAACe |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntBKl&sid=JufnpKwhDhVpw3QRAACe |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntBLR&sid=7FgVnDeZu0hQwVoMAACd |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntBq7&sid=II7w5nmEN6QQtOzOAACf |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntBRk&sid=1Y3V-ENvuwptiMTPAACg |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntBSF&sid=1Y3V-ENvuwptiMTPAACg |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntBYd&sid=II7w5nmEN6QQtOzOAACf |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntC-a&sid=hXxRZyO6LSFL0otgAACo |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntC2W&sid=OlQ8KG_IEnx4NEyEAACk |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntC3b&sid=OlQ8KG_IEnx4NEyEAACk |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntC4G&sid=DC85qiiAejV0SQatAACl |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntC5_&sid=U9B-oYu3XDIHWY3wAACj |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntC5X&sid=DC85qiiAejV0SQatAACl |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntC7o&sid=o99iN8uBX15nRWd0AACm |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntCbP&sid=_LIPnxa6-to8dUvQAACr |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntCBY&sid=o99iN8uBX15nRWd0AACm |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntCc-&sid=_LIPnxa6-to8dUvQAACr |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntCg6&sid=HrWhnEpTDsaCSyc2AACn |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntClI&sid=Imov9sH1JCKzoJpjAACp |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntCnc&sid=hXxRZyO6LSFL0otgAACo |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntCPL&sid=HrWhnEpTDsaCSyc2AACn |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntCR8&sid=U9B-oYu3XDIHWY3wAACj |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntCtR&sid=Zzjug_jC4JPpkVYXAACu |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntCUn&sid=oH62Zwq7wXsRRX9jAACq |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntCuU&sid=Zzjug_jC4JPpkVYXAACu |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntCx0&sid=QW-JyI3LFRKauyXOAACs |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntCXJ&sid=oH62Zwq7wXsRRX9jAACq |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntCxn&sid=QW-JyI3LFRKauyXOAACs |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntCzF&sid=Imov9sH1JCKzoJpjAACp |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntD7a&sid=QZU863yKSyWEJKxWAACv |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntD7C&sid=QZU863yKSyWEJKxWAACv |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDac&sid=td-QNzkjFGKNFodtAAC5 |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDb5&sid=td-QNzkjFGKNFodtAAC5 |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDCD&sid=yD10DHxg1fMOUgHGAACw |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDD0&sid=yD10DHxg1fMOUgHGAACw |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDE4&sid=6tSnsg8TPfiaulJKAACx |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDF5&sid=6tSnsg8TPfiaulJKAACx |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDFY&sid=D5-g-ybGcGxlwzyJAACy |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDGF&sid=D5-g-ybGcGxlwzyJAACy |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDH2&sid=1CZzIGY0clOHsHm0AACz |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDHH&sid=1CZzIGY0clOHsHm0AACz |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDKH&sid=dn-GI2MZf-kG21zeAAC0 |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDLi&sid=dn-GI2MZf-kG21zeAAC0 |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDmP&sid=yWeskycbSZ_kcvMNAAC1 |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDmS&sid=0T9_0tZfq6l2r5b1AAC6 |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDnd&sid=0T9_0tZfq6l2r5b1AAC6 |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDUR&sid=yWeskycbSZ_kcvMNAAC1 |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDWk&sid=IZZRXJVQap-LALXeAAC2 |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDwn&sid=5dJ1_h9smuyKfbCIAAC8 |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDWP&sid=IZZRXJVQap-LALXeAAC2 |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDX_&sid=L9zGWlrnOEOjjiRfAAC3 |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDXO&sid=L9zGWlrnOEOjjiRfAAC3 |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDxT&sid=rIjSubDWzZWrcppkAAC9 |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDxV&sid=5dJ1_h9smuyKfbCIAAC8 |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDyG&sid=rIjSubDWzZWrcppkAAC9 |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntE-I&sid=5vWezKs8R5FndQlNAADL |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntE0g&sid=rukIn_zaUEKrhnQAAAC7 |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntE9l&sid=n-LVoQZxmi8S_rUNAADA |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntEAL&sid=rukIn_zaUEKrhnQAAAC7 |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntEAt&sid=n-LVoQZxmi8S_rUNAADA |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntECX&sid=Stz2m9fjNo7I5bPuAADB |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntED4&sid=Stz2m9fjNo7I5bPuAADB |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntEDu&sid=hAgNhwCv7YfjDEEJAAC- |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntEfn&sid=IHwRTU8zS_i5YgKAAADE |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntEL5&sid=p4AJx2FdUhzJjdG_AADC |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntEMN&sid=p4AJx2FdUhzJjdG_AADC |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntEoN&sid=kX2BlnkBsFI76Ck2AADK |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntEoS&sid=md-Te9xxnSvYr6HkAADJ |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntEpO&sid=md-Te9xxnSvYr6HkAADJ |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntEr8&sid=IHwRTU8zS_i5YgKAAADE |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntES3&sid=gahLTKtoUH0obLoHAADF |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntEsH&sid=KrsDcG9iH7BuofORAADD |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntET3&sid=gahLTKtoUH0obLoHAADF |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntEuA&sid=F1D2pJ_br01gwKAXAADH |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntEwL&sid=3PZ90-MfaD3EMP48AADG |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntEWN&sid=hAgNhwCv7YfjDEEJAAC- |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntEXj&sid=KrsDcG9iH7BuofORAADD |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntEzR&sid=5vWezKs8R5FndQlNAADL |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntEzS&sid=F1D2pJ_br01gwKAXAADH |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntF3T&sid=kX2BlnkBsFI76Ck2AADK |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntF4I&sid=3PZ90-MfaD3EMP48AADG |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntF6C&sid=wsodaGnPKhetsOfoAADM |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntF72&sid=wsodaGnPKhetsOfoAADM |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntF9N&sid=OgtXSDb8PQilFqI-AADN |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFB9&sid=VecrRHI7Hao7Nv38AADO |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFBM&sid=VecrRHI7Hao7Nv38AADO |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFfC&sid=u81s8PMhfl2fB3WmAADV |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFfv&sid=u81s8PMhfl2fB3WmAADV |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFih&sid=BlVT8bo5R_5iIKl7AADW |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFjC&sid=BlVT8bo5R_5iIKl7AADW |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFoB&sid=yGF-oaRgS7pKT4csAADX |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFot&sid=yGF-oaRgS7pKT4csAADX |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFp0&sid=qgePCDP1QoS1qSChAADY |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFpL&sid=qgePCDP1QoS1qSChAADY |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFQr&sid=ll3UVNDqCUR-2OTnAADP |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFRh&sid=wyIirlr3Hh1F2dn4AADQ |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFS2&sid=ll3UVNDqCUR-2OTnAADP |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFSg&sid=kiN4CEbLkuaxzFW8AADS |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFsO&sid=MYvdJilZG1AAzud4AADZ |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFsv&sid=MYvdJilZG1AAzud4AADZ |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFTq&sid=SUR93008lNX5EWuPAADR |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFTU&sid=kiN4CEbLkuaxzFW8AADS |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFTX&sid=wyIirlr3Hh1F2dn4AADQ |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFun&sid=aVmTutY9PGcXqlb8AADb |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFuP&sid=aVmTutY9PGcXqlb8AADb |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFV2&sid=SUR93008lNX5EWuPAADR |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFVz&sid=u90Fs8ypkMnOcN-UAADT |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFYc&sid=u90Fs8ypkMnOcN-UAADT |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntG2t&sid=b2OR9gjAgLqyliooAADa |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntG6n&sid=6T1RYL3byXFh9w0pAADd |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntG6y&sid=-t1HiYz9TNWZfd58AADe |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntG8_&sid=-t1HiYz9TNWZfd58AADe |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntG_r&sid=UBS0J6fikwvf5cl-AADo |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntGBy&sid=84_tmChOFTwS1nzgAADf |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntGCj&sid=84_tmChOFTwS1nzgAADf |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntGDZ&sid=9DpU1BxJIUpvnNXkAADc |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntGg5&sid=TGH7ZjpaDy5IpZGGAADg |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntGKJ&sid=L8-H8UMLqSOtBuQYAADi |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntGKN&sid=b2OR9gjAgLqyliooAADa |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntGKu&sid=L8-H8UMLqSOtBuQYAADi |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntGmi&sid=VGfCcTvTfBTIKS5IAADl |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntGmw&sid=VGfCcTvTfBTIKS5IAADl |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntGNQ&sid=6T1RYL3byXFh9w0pAADd |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntGo6&sid=IikY8K-moBjx0nItAADm |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntGob&sid=IikY8K-moBjx0nItAADm |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntGRu&sid=TGH7ZjpaDy5IpZGGAADg |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntGS7&sid=awOVEbtHjOkiOZkgAADj |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntGTH&sid=awOVEbtHjOkiOZkgAADj |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntGW4&sid=vsfCiIq3xH2teV6HAADk |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntGWS&sid=vsfCiIq3xH2teV6HAADk |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntGZk&sid=9DpU1BxJIUpvnNXkAADc |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntH3C&sid=81eQ5uVpymsaxpzTAADn |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntH3S&sid=UBS0J6fikwvf5cl-AADo |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntH4t&sid=8TF5lGSROdmendE5AADs |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntH9R&sid=bDqQw3nhOH9POKLIAADt |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntH9w&sid=bDqQw3nhOH9POKLIAADt |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntHcB&sid=p-qxLexhJuyYre-RAADp |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntHeY&sid=PrgXBqJvSMyNNGwUAADx |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntHF9&sid=mnXGbOuUIbg28MtYAADq |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntHI2&sid=p-qxLexhJuyYre-RAADp |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntHIE&sid=mnXGbOuUIbg28MtYAADq |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntHiX&sid=vAAy90kHHk2eIZ6DAADy |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntHjF&sid=PrgXBqJvSMyNNGwUAADx |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntHKI&sid=0Xo7FT8rLGmQ8fy3AADr |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntHm9&sid=vAAy90kHHk2eIZ6DAADy |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntHnf&sid=fOhuIbPKtoYUSsaHAADz |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntHOi&sid=81eQ5uVpymsaxpzTAADn |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntHoI&sid=fOhuIbPKtoYUSsaHAADz |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntHqk&sid=0Xo7FT8rLGmQ8fy3AADr |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntHrt&sid=v5dDK9LGCzjHbE-hAADv |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntHRU&sid=8TF5lGSROdmendE5AADs |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntHso&sid=4oQA0Z3NHVv_J5CzAADw |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntHuw&sid=aap6vsthw6d6-b4XAAD0 |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntHvo&sid=aap6vsthw6d6-b4XAAD0 |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntI-z&sid=bN4hIaCo8kOzdAs4AAEF |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntI69&sid=h5N71L3cuWmkN-yxAAD1 |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntI6n&sid=h5N71L3cuWmkN-yxAAD1 |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntI6O&sid=bU8Ign3oSoY32HmzAAD2 |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntI7B&sid=bU8Ign3oSoY32HmzAAD2 |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntI7E&sid=v5dDK9LGCzjHbE-hAADv |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntI90&sid=T9FyuyPxknwZGSEXAAD3 |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntI9o&sid=vTnrFuahYlw0LOKYAAD4 |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntI9Y&sid=vTnrFuahYlw0LOKYAAD4 |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntI_v&sid=bN4hIaCo8kOzdAs4AAEF |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntIC6&sid=4oQA0Z3NHVv_J5CzAADw |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntICs&sid=T9FyuyPxknwZGSEXAAD3 |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntIEA&sid=HgG0eis_SfJLWghuAAD5 |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntIFo&sid=HgG0eis_SfJLWghuAAD5 |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntIjN&sid=HQeWubztd7HUTYg_AAEB |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntIkG&sid=HQeWubztd7HUTYg_AAEB |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntIkn&sid=mdgqNEuPOd7iWlwxAAEC |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntIlX&sid=mdgqNEuPOd7iWlwxAAEC |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntIn6&sid=MPq7DTmSHQGhyfbPAAD_ |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntIN9&sid=rrX8OrbUJLfWEFYgAAD6 |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntIOD&sid=rrX8OrbUJLfWEFYgAAD6 |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntIoL&sid=x6-iUAYZiKbpZsxYAAEE |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntIpS&sid=x6-iUAYZiKbpZsxYAAEE |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntIqq&sid=4NqYYq1R4z5pUvYfAAEA |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntISd&sid=C_At13d0GB1AHC_EAAD7 |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntITd&sid=C_At13d0GB1AHC_EAAD7 |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntITi&sid=re3GRvtydV0sjx5dAAD9 |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntITN&sid=YiBx94ZffeTcdMFeAAD8 |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntIUD&sid=re3GRvtydV0sjx5dAAD9 |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntIxe&sid=SBiEhDN09rORwlxwAAED |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntIXH&sid=pvx6fpihHUPBk3DrAAD- |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntIYy&sid=pvx6fpihHUPBk3DrAAD- |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJ-k&sid=VjY1MccZjNSfHvl8AAEY |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJ0w&sid=MPq7DTmSHQGhyfbPAAD_ |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJ1w&sid=4NqYYq1R4z5pUvYfAAEA |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJ6a&sid=vshEGg1B1iIT5an-AAEI |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJ7M&sid=vshEGg1B1iIT5an-AAEI |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJ8p&sid=z2ID4hyBIrv8h3qQAAEJ |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJ8Y&sid=SBiEhDN09rORwlxwAAED |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJ9I&sid=z2ID4hyBIrv8h3qQAAEJ |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJCF&sid=C-SFY6gg3p2-RpABAAEG |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJdU&sid=oNf7M70Jay9zk-auAAET |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJE-&sid=dr-I2ZLbeiHWQ6cCAAEL |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJE3&sid=-5hB1duDh7dUVSbxAAEK |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJE9&sid=dr-I2ZLbeiHWQ6cCAAEL |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJeO&sid=oNf7M70Jay9zk-auAAET |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJf8&sid=nshVUAtZn5Quca8OAAEQ |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJfv&sid=RqgYndfpSsFG3zSbAAES |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJGF&sid=-5hB1duDh7dUVSbxAAEK |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJGN&sid=C-SFY6gg3p2-RpABAAEG |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJiE&sid=RqgYndfpSsFG3zSbAAES |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJIF&sid=acSCLAqrcyLoNWjeAAEM |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJJ7&sid=DAm6VHoQgG9r4rydAAEN |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJJN&sid=DAm6VHoQgG9r4rydAAEN |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJns&sid=Tpcb5_mTlNkhKTZxAAEO |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJOC&sid=zr7tvbUHXEBiT_4tAAEP |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJQl&sid=zr7tvbUHXEBiT_4tAAEP |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJqT&sid=6nIvTmIBq2KJQSCNAAEV |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJrX&sid=6nIvTmIBq2KJQSCNAAEV |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJUf&sid=Tpcb5_mTlNkhKTZxAAEO |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJyE&sid=AdbyMTr_K3f1mvLQAAEX |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJyr&sid=AdbyMTr_K3f1mvLQAAEX |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJZ6&sid=nshVUAtZn5Quca8OAAEQ |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJzO&sid=VjY1MccZjNSfHvl8AAEY |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntK0O&sid=un3gj4Yaq1gAk0-XAAEW |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntK1I&sid=KsHu4V5_Mt54i6voAAEb |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntK1o&sid=KsHu4V5_Mt54i6voAAEb |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntK1T&sid=EKSF6isNIWF4qEr3AAEa |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntK2G&sid=EKSF6isNIWF4qEr3AAEa |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntKCB&sid=pinN-Tk8XZz7fk6vAAEe |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntKF7&sid=pinN-Tk8XZz7fk6vAAEe |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntKFc&sid=un3gj4Yaq1gAk0-XAAEW |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntKFd&sid=VBG9HBNknYV_KTqcAAEZ |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntKi3&sid=J3aCjPiTMiHUJWy9AAEg |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntKnK&sid=lp91BNQi2FBKdcbsAAEi |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntKPO&sid=dgRAaZ4igbAPImksAAEf |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntKPu&sid=dgRAaZ4igbAPImksAAEf |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntKra&sid=J3aCjPiTMiHUJWy9AAEg |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntKyc&sid=lp91BNQi2FBKdcbsAAEi |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntKZK&sid=VBG9HBNknYV_KTqcAAEZ |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | Apache/2.4.59 |
| Other Info | There is a chance that the highlight in the finding is on a value in the headers, versus the actual matched string in the response body. |
| Instances | 355 |
| Solution |
Configure the server to prevent such information leaks. For example:
Under Tomcat this is done via the "server" directive and implementation of custom error pages.
Under Apache this is done via the "ServerSignature" and "ServerTokens" directives.
|
| Reference | https://owasp.org/www-project-web-security-testing-guide/v41/4-Web_Application_Security_Testing/08-Testing_for_Error_Handling/ |
| CWE Id | 200 |
| WASC Id | 13 |
| Plugin Id | 10009 |
|
Low |
Private IP Disclosure |
|---|---|
| Description |
A private IP (such as 10.x.x.x, 172.x.x.x, 192.168.x.x) or an Amazon EC2 private hostname (for example, ip-10-0-56-78) has been found in the HTTP response body. This information might be helpful for further attacks targeting internal systems.
|
| URL | http://localhost/rest/admin/application-configuration |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | 192.168.99.100:3000 |
| Other Info | 192.168.99.100:3000 192.168.99.100:4200 |
| Instances | 1 |
| Solution |
Remove the private IP address from the HTTP response body. For comments, use JSP/ASP/PHP comment instead of HTML/JavaScript comment which can be seen by client browsers.
|
| Reference | https://tools.ietf.org/html/rfc1918 |
| CWE Id | 200 |
| WASC Id | 13 |
| Plugin Id | 2 |
|
Low |
Timestamp Disclosure - Unix |
|---|---|
| Description |
A timestamp was disclosed by the application/web server - Unix
|
| URL | http://localhost/main.js |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | 1734944650 |
| Other Info | 1734944650, which evaluates to: 2024-12-23 04:04:10 |
| URL | http://localhost/rest/admin/application-configuration |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | 1969196030 |
| Other Info | 1969196030, which evaluates to: 2032-05-26 10:53:50 |
| URL | http://localhost/rest/admin/application-configuration |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | 1970691216 |
| Other Info | 1970691216, which evaluates to: 2032-06-12 18:13:36 |
| URL | http://localhost/rest/products/search?q= |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | 1969196030 |
| Other Info | 1969196030, which evaluates to: 2032-05-26 10:53:50 |
| URL | http://localhost/rest/products/search?q= |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | 1970691216 |
| Other Info | 1970691216, which evaluates to: 2032-06-12 18:13:36 |
| Instances | 5 |
| Solution |
Manually confirm that the timestamp data is not sensitive, and that the data cannot be aggregated to disclose exploitable patterns.
|
| Reference | https://cwe.mitre.org/data/definitions/200.html |
| CWE Id | 200 |
| WASC Id | 13 |
| Plugin Id | 10096 |
|
Low |
X-Content-Type-Options Header Missing |
|---|---|
| Description |
The Anti-MIME-Sniffing header X-Content-Type-Options was not set to 'nosniff'. This allows older versions of Internet Explorer and Chrome to perform MIME-sniffing on the response body, potentially causing the response body to be interpreted and displayed as a content type other than the declared content type. Current (early 2014) and legacy versions of Firefox will use the declared content type (if one is set), rather than performing MIME-sniffing.
|
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt2sq |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt2zr&sid=_HTNywfDgF4DlKk7AABd |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt3AK |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt3Ar&sid=8iKQl3-XbwQ8Q7H6AABe |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt3ji |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt3Oj |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt3tN&sid=se16NWe1d-Z-fjkgAABh |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt4Ka |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt4LF&sid=hsklRPecaE59c2Y9AABj |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt4me |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt5D1 |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt5N1 |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt5ns |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt67V |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt689 |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt68z&sid=tx1rkX9aOjqRN9RWAABp |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt6_E |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt6_v&sid=07vWUEAMA-Br7bLzAABv |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt6d1 |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt6dQ&sid=5cfhwLMbu0yP0A1zAABs |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt6G7&sid=L25QmBGhVTg2EjtDAABo |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt6mZ |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt6rW |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt6SY |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt6U6&sid=qJdXNKtoYsT0QAjiAABq |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt7AD |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt7aI |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt7at&sid=GBXpm5ZcdmHSLz9AAAB2 |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt7Bn |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt7Bw&sid=5zCBYeLCwP-WSoh8AABx |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt7DM&sid=22T5wyWQI4-Jf-0DAABy |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt7hN&sid=kA3nvrLSojIIGG9eAAB1 |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt7k2 |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt7LO |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt7MR&sid=_DEdckY6De2Hj83LAABz |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt7QJ |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt7qw |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt7R7&sid=W1MAYSKN8ZYzWRDuAAB0 |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt7rz&sid=fr1eMQu4_I3Cfv6jAAB4 |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt7UF |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt80P |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt83h |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt8_o&sid=vw-C-E1pQAZSuyPdAACD |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt8Ad |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt8DP |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt8KO |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt8nT |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt8o_ |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt8PX |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt8ry |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt8YV |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt8Z7&sid=ie4oi9cRmUMGm2p-AACA |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt8zw&sid=SjmPYzHU6Xpdw44FAACE |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt9-g&sid=DP4c-Gohz_Q5sQvBAACO |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt95t |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt9aF |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt9bH&sid=sKgT6e-dqTkx7FquAACJ |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt9CD |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt9cy |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt9E4&sid=KIUZT_JukxaSTcbgAACG |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt9eK&sid=Wpkpb0DVNRPLb0scAACK |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt9g4 |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt9kl |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt9of |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt9PM |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt9Q7&sid=iFG_Zqg9N3wiFB1fAACI |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt9zk |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntA0x |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntA1_&sid=uK0G6ecpQZNOldVDAACP |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntA6C |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntA_U |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntA_v |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntAIx |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntAKI&sid=tF-LYrUliiO5YGPvAACS |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntAm2 |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntANv |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntAU6 |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntAv3 |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntAwA |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntAWQ |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntAXC |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntB-h |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntB6_ |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntBcf |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntBdS&sid=5ZJhtSnfEiVMIvVFAACh |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntBFe |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntBgN |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntBJ_&sid=JufnpKwhDhVpw3QRAACe |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntBJk&sid=7FgVnDeZu0hQwVoMAACd |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntBJQ |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntBP5 |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntBPo |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntBt_ |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntBur |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntBYf&sid=II7w5nmEN6QQtOzOAACf |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntC2X&sid=OlQ8KG_IEnx4NEyEAACk |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntC3H |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntC7r&sid=o99iN8uBX15nRWd0AACm |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntCab |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntCbV&sid=_LIPnxa6-to8dUvQAACr |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntClR&sid=Imov9sH1JCKzoJpjAACp |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntCNg |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntCnn&sid=hXxRZyO6LSFL0otgAACo |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntCpc |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntCPO&sid=HrWhnEpTDsaCSyc2AACn |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntCQ_ |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntCr- |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntCT3 |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntCtd&sid=Zzjug_jC4JPpkVYXAACu |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntCU8 |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntCUq&sid=oH62Zwq7wXsRRX9jAACq |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntCxJ&sid=QW-JyI3LFRKauyXOAACs |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntD6G |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntD7F&sid=QZU863yKSyWEJKxWAACv |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDAQ |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDCy |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDDy |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDG5 |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDJV |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDKI&sid=dn-GI2MZf-kG21zeAAC0 |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDkw |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDlC |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDmd&sid=0T9_0tZfq6l2r5b1AAC6 |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDqk |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDTf |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDVe |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDVX |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDw- |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDwq&sid=5dJ1_h9smuyKfbCIAAC8 |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDWR&sid=IZZRXJVQap-LALXeAAC2 |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDxl&sid=rIjSubDWzZWrcppkAAC9 |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDyc |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDZx |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntE0k&sid=rukIn_zaUEKrhnQAAAC7 |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntE8a |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntE9n&sid=n-LVoQZxmi8S_rUNAADA |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntEB4 |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntEbw |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntECe&sid=Stz2m9fjNo7I5bPuAADB |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntED-&sid=hAgNhwCv7YfjDEEJAAC- |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntEf-&sid=IHwRTU8zS_i5YgKAAADE |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntEhX |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntEJt |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntELL&sid=p4AJx2FdUhzJjdG_AADC |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntELp |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntEm7 |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntEmz |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntEoQ&sid=kX2BlnkBsFI76Ck2AADK |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntEPc |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntEQE |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntES7&sid=gahLTKtoUH0obLoHAADF |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntEuH&sid=F1D2pJ_br01gwKAXAADH |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntEwt&sid=3PZ90-MfaD3EMP48AADG |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntEXl&sid=KrsDcG9iH7BuofORAADD |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntEyo |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntEzT&sid=5vWezKs8R5FndQlNAADL |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntF5v |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntF6K&sid=wsodaGnPKhetsOfoAADM |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntF8h |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFAR |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFco |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFfP&sid=u81s8PMhfl2fB3WmAADV |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFhO |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFij&sid=BlVT8bo5R_5iIKl7AADW |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFJs |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFmW |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFmZ |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFoE&sid=yGF-oaRgS7pKT4csAADX |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFPe |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFQc |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFQd |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFR7&sid=ll3UVNDqCUR-2OTnAADP |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFrv |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFsi |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFtv |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFUU |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFWF&sid=u90Fs8ypkMnOcN-UAADT |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFwU |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntG1F |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntG2v&sid=b2OR9gjAgLqyliooAADa |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntG6O |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntG6q&sid=6T1RYL3byXFh9w0pAADd |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntG79&sid=-t1HiYz9TNWZfd58AADe |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntGB4 |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntGC6&sid=84_tmChOFTwS1nzgAADf |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntGDl&sid=9DpU1BxJIUpvnNXkAADc |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntGET |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntGIl |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntGKT&sid=L8-H8UMLqSOtBuQYAADi |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntGlw |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntGmn&sid=VGfCcTvTfBTIKS5IAADl |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntGnS |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntGqB |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntGQs |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntGRy&sid=TGH7ZjpaDy5IpZGGAADg |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntGSB&sid=awOVEbtHjOkiOZkgAADj |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntGVT |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntGxE |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntGyN |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntH0f |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntH3Z |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntH89 |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntHdP |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntHeo&sid=PrgXBqJvSMyNNGwUAADx |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntHFC&sid=mnXGbOuUIbg28MtYAADq |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntHg4 |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntHI4&sid=p-qxLexhJuyYre-RAADp |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntHix |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntHiY&sid=vAAy90kHHk2eIZ6DAADy |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntHJm |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntHKs&sid=0Xo7FT8rLGmQ8fy3AADr |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntHr_&sid=v5dDK9LGCzjHbE-hAADv |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntHsp&sid=4oQA0Z3NHVv_J5CzAADw |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntHtV |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntHux&sid=aap6vsthw6d6-b4XAAD0 |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntHXc |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntHZU |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntI-F |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntI-U |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntI4K |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntI54 |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntI6F&sid=h5N71L3cuWmkN-yxAAD1 |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntI6X&sid=bU8Ign3oSoY32HmzAAD2 |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntI7L |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntI8q |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntI_8&sid=bN4hIaCo8kOzdAs4AAEF |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntICZ |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntIeM |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntIiI |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntIjc&sid=HQeWubztd7HUTYg_AAEB |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntIjR |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntImn |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntIMO |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntINL&sid=rrX8OrbUJLfWEFYgAAD6 |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntInr |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntInY&sid=MPq7DTmSHQGhyfbPAAD_ |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntIoU&sid=x6-iUAYZiKbpZsxYAAEE |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntIqs&sid=4NqYYq1R4z5pUvYfAAEA |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntIS9 |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntISx |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntITE |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntIVs |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntIX2 |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntIXI&sid=pvx6fpihHUPBk3DrAAD- |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntIxq&sid=SBiEhDN09rORwlxwAAED |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJ5i |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJ6g&sid=vshEGg1B1iIT5an-AAEI |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJ7s |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJ_7 |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJBq |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJcF |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJCH&sid=C-SFY6gg3p2-RpABAAEG |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJdb&sid=oNf7M70Jay9zk-auAAET |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJDJ |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJE5&sid=-5hB1duDh7dUVSbxAAEK |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJHW |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJII&sid=acSCLAqrcyLoNWjeAAEM |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJIK |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJJD&sid=DAm6VHoQgG9r4rydAAEN |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJM5 |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJmC |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJNJ |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJow |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJqU&sid=6nIvTmIBq2KJQSCNAAEV |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJSe |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJUg&sid=Tpcb5_mTlNkhKTZxAAEO |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJUi |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJW4 |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJx5 |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJxZ |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJyF&sid=AdbyMTr_K3f1mvLQAAEX |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJZ7&sid=nshVUAtZn5Quca8OAAEQ |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntK0M |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntK0O |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntK0Q&sid=un3gj4Yaq1gAk0-XAAEW |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntK1n&sid=EKSF6isNIWF4qEr3AAEa |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntK4J |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntKBJ |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntKCC&sid=pinN-Tk8XZz7fk6vAAEe |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntKce |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntKeE |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntKFg |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntKFx&sid=VBG9HBNknYV_KTqcAAEZ |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntKiY&sid=J3aCjPiTMiHUJWy9AAEg |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntKIz |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntKnM&sid=lp91BNQi2FBKdcbsAAEi |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntKOY |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntKPR&sid=dgRAaZ4igbAPImksAAEf |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntKS1 |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntKVh |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntKwm |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntL0O |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntLBn |
| Method | GET |
| Parameter | x-content-type-options |
| Attack | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| Instances | 293 |
| Solution |
Ensure that the application/web server sets the Content-Type header appropriately, and that it sets the X-Content-Type-Options header to 'nosniff' for all web pages.
If possible, ensure that the end user uses a standards-compliant and modern web browser that does not perform MIME-sniffing at all, or that can be directed by the web application/web server to not perform MIME-sniffing.
|
| Reference |
https://learn.microsoft.com/en-us/previous-versions/windows/internet-explorer/ie-developer/compatibility/gg622941(v=vs.85)
https://owasp.org/www-community/Security_Headers |
| CWE Id | 693 |
| WASC Id | 15 |
| Plugin Id | 10021 |
|
Informational |
.env Information Leak |
|---|---|
| Description |
One or more .env files seems to have been located on the server. These files often expose infrastructure or administrative account credentials, API or APP keys, or other sensitive configuration information.
|
| URL | http://localhost:3000/ftp/.env |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | HTTP/1.1 403 Forbidden |
| Other Info | Based on response status code the .env file may be protected by an authentication or authorization mechanism. |
| Instances | 1 |
| Solution |
Ensure the .env file is not accessible.
|
| Reference |
https://www.google.com/search?q=db_password+filetype%3Aenv
https://mobile.twitter.com/svblxyz/status/1045013939904532482 |
| CWE Id | 215 |
| WASC Id | 13 |
| Plugin Id | 40034 |
|
Informational |
.htaccess Information Leak |
|---|---|
| Description |
htaccess files can be used to alter the configuration of the Apache Web Server software to enable/disable additional functionality and features that the Apache Web Server software has to offer.
|
| URL | http://localhost:3000/ftp/.htaccess |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | HTTP/1.1 403 Forbidden |
| Other Info | Based on response status code htaccess file may be protected by an authentication or authorization mechanism. |
| Instances | 1 |
| Solution |
Ensure the .htaccess file is not accessible.
|
| Reference |
https://developer.mozilla.org/en-US/docs/Learn/Server-side/Apache_Configuration_htaccess
https://httpd.apache.org/docs/2.4/howto/htaccess.html |
| CWE Id | 94 |
| WASC Id | 14 |
| Plugin Id | 40032 |
|
Informational |
Base64 Disclosure |
|---|---|
| Description |
Base64 encoded data was disclosed by the application/web server. Note: in the interests of performance not all base64 strings in the response were analyzed individually, the entire response should be looked at by the analyst/security team/developer(s).
|
| URL | http://localhost/main.js |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | 1AbKfgvw9psQ41NbLi8kufDQTezwG8DRZm |
| Other Info | ��~����S[./$���M����f |
| URL | http://localhost/vendor.js |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | 0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ |
| Other Info | �]�㞻�֛qן���Y�����ۯ�� �Q� ��0ӏA�QU�a |
| URL | http://localhost:3000/vendor.js |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | 0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ |
| Other Info | �]�㞻�֛qן���Y�����ۯ�� �Q� ��0ӏA�QU�a |
| Instances | 3 |
| Solution |
Manually confirm that the Base64 data does not leak sensitive information, and that the data cannot be aggregated/used to exploit other vulnerabilities.
|
| Reference | https://projects.webappsec.org/w/page/13246936/Information%20Leakage |
| CWE Id | 200 |
| WASC Id | 13 |
| Plugin Id | 10094 |
|
Informational |
CORS Header |
|---|---|
| Description |
Cross-Origin Resource Sharing (CORS) is an HTTP-header based mechanism that allows a server to indicate any other origins (domain, scheme, or port) than its own from which a browser should permit loading of resources. It relaxes the Same-Origin Policy (SOP).
|
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntKnM&sid=lp91BNQi2FBKdcbsAAEi |
| Method | GET |
| Parameter | |
| Attack | origin: http://Hck03Q7W.com |
| Evidence | |
| Other Info | |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntLBn |
| Method | GET |
| Parameter | |
| Attack | origin: http://Hck03Q7W.com |
| Evidence | |
| Other Info | |
| URL | http://localhost/socket.io/?EIO=4&transport=websocket&sid=_HTNywfDgF4DlKk7AABd |
| Method | GET |
| Parameter | |
| Attack | origin: http://Hck03Q7W.com |
| Evidence | |
| Other Info | |
| Instances | 3 |
| Solution |
If a web resource contains sensitive information, the origin should be properly specified in the Access-Control-Allow-Origin header. Only trusted websites needing this resource should be specified in this header, with the most secured protocol supported.
|
| Reference |
https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS
https://portswigger.net/web-security/cors |
| CWE Id | 942 |
| WASC Id | 14 |
| Plugin Id | 40040 |
|
Informational |
Cookie Slack Detector |
|---|---|
| Description |
Repeated GET requests: drop a different cookie each time, followed by normal request with all cookies to stabilize session, compare responses against original baseline GET. This can reveal areas where cookie based authentication/attributes are not actually enforced.
|
| URL | http://localhost/assets/public/images/hackingInstructor.png |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | Cookies that don't have expected effects can reveal flaws in application logic. In the worst case, this can reveal where authentication via cookie token(s) is not actually enforced. These cookies affected the response: These cookies did NOT affect the response: cookieconsent_status,welcomebanner_status,language |
| URL | http://localhost/assets/public/images/products |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | Cookies that don't have expected effects can reveal flaws in application logic. In the worst case, this can reveal where authentication via cookie token(s) is not actually enforced. These cookies affected the response: These cookies did NOT affect the response: language |
| URL | http://localhost/assets/public/images/products/apple_juice.jpg |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | Cookies that don't have expected effects can reveal flaws in application logic. In the worst case, this can reveal where authentication via cookie token(s) is not actually enforced. These cookies affected the response: These cookies did NOT affect the response: language |
| URL | http://localhost/assets/public/images/products/apple_pressings.jpg |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | Cookies that don't have expected effects can reveal flaws in application logic. In the worst case, this can reveal where authentication via cookie token(s) is not actually enforced. These cookies affected the response: These cookies did NOT affect the response: language |
| URL | http://localhost/assets/public/images/products/artwork2.jpg |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | Cookies that don't have expected effects can reveal flaws in application logic. In the worst case, this can reveal where authentication via cookie token(s) is not actually enforced. These cookies affected the response: These cookies did NOT affect the response: language |
| URL | http://localhost/assets/public/images/products/banana_juice.jpg |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | Cookies that don't have expected effects can reveal flaws in application logic. In the worst case, this can reveal where authentication via cookie token(s) is not actually enforced. These cookies affected the response: These cookies did NOT affect the response: language |
| URL | http://localhost/assets/public/images/products/carrot_juice.jpeg |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | Cookies that don't have expected effects can reveal flaws in application logic. In the worst case, this can reveal where authentication via cookie token(s) is not actually enforced. These cookies affected the response: These cookies did NOT affect the response: language |
| URL | http://localhost/assets/public/images/products/eggfruit_juice.jpg |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | Cookies that don't have expected effects can reveal flaws in application logic. In the worst case, this can reveal where authentication via cookie token(s) is not actually enforced. These cookies affected the response: These cookies did NOT affect the response: language |
| URL | http://localhost/assets/public/images/products/fan_facemask.jpg |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | Cookies that don't have expected effects can reveal flaws in application logic. In the worst case, this can reveal where authentication via cookie token(s) is not actually enforced. These cookies affected the response: These cookies did NOT affect the response: language |
| URL | http://localhost/assets/public/images/products/fruit_press.jpg |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | Cookies that don't have expected effects can reveal flaws in application logic. In the worst case, this can reveal where authentication via cookie token(s) is not actually enforced. These cookies affected the response: These cookies did NOT affect the response: language |
| URL | http://localhost/assets/public/images/products/green_smoothie.jpg |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | Cookies that don't have expected effects can reveal flaws in application logic. In the worst case, this can reveal where authentication via cookie token(s) is not actually enforced. These cookies affected the response: These cookies did NOT affect the response: language |
| URL | http://localhost/assets/public/images/products/lemon_juice.jpg |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | Cookies that don't have expected effects can reveal flaws in application logic. In the worst case, this can reveal where authentication via cookie token(s) is not actually enforced. These cookies affected the response: These cookies did NOT affect the response: language |
| URL | http://localhost/assets/public/images/products/melon_bike.jpeg |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | Cookies that don't have expected effects can reveal flaws in application logic. In the worst case, this can reveal where authentication via cookie token(s) is not actually enforced. These cookies affected the response: These cookies did NOT affect the response: language |
| URL | http://localhost/assets/public/images/products/permafrost.jpg |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | Cookies that don't have expected effects can reveal flaws in application logic. In the worst case, this can reveal where authentication via cookie token(s) is not actually enforced. These cookies affected the response: These cookies did NOT affect the response: language |
| URL | http://localhost/font-mfizz.woff |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | Cookies that don't have expected effects can reveal flaws in application logic. In the worst case, this can reveal where authentication via cookie token(s) is not actually enforced. These cookies affected the response: These cookies did NOT affect the response: cookieconsent_status,welcomebanner_status,language |
| URL | http://localhost/rest/captcha |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | Dropping this cookie appears to have invalidated the session: [cookieconsent_status] A follow-on request with all original cookies still had a different response than the original request. |
| URL | http://localhost/rest/captcha/ |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | Dropping this cookie appears to have invalidated the session: [cookieconsent_status] A follow-on request with all original cookies still had a different response than the original request. |
| URL | http://localhost/rest/user |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | Cookies that don't have expected effects can reveal flaws in application logic. In the worst case, this can reveal where authentication via cookie token(s) is not actually enforced. These cookies affected the response: These cookies did NOT affect the response: cookieconsent_status,welcomebanner_status,language |
| URL | http://localhost/rest/user/whoami |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | Cookies that don't have expected effects can reveal flaws in application logic. In the worst case, this can reveal where authentication via cookie token(s) is not actually enforced. These cookies affected the response: These cookies did NOT affect the response: cookieconsent_status,welcomebanner_status,language |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntLBn |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | Cookies that don't have expected effects can reveal flaws in application logic. In the worst case, this can reveal where authentication via cookie token(s) is not actually enforced. These cookies affected the response: These cookies did NOT affect the response: language |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt313&sid=_HTNywfDgF4DlKk7AABd |
| Method | POST |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | Cookies that don't have expected effects can reveal flaws in application logic. In the worst case, this can reveal where authentication via cookie token(s) is not actually enforced. These cookies affected the response: These cookies did NOT affect the response: language |
| Instances | 21 |
| Solution | |
| Reference | https://cwe.mitre.org/data/definitions/205.html |
| CWE Id | 205 |
| WASC Id | 45 |
| Plugin Id | 90027 |
|
Informational |
Information Disclosure - Suspicious Comments |
|---|---|
| Description |
The response appears to contain suspicious comments which may help an attacker. Note: Matches made within script blocks or files are against the entire content not only comments.
|
| URL | http://localhost/main.js |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | query |
| Other Info | The following pattern was used: \bQUERY\b and was detected in the element starting with: ""use strict";(self.webpackChunkfrontend=self.webpackChunkfrontend||[]).push([[179],{4550:(X,W,c)=>{c.d(W,{e:()=>s});var k=c(2340", see evidence field for the suspicious comment/snippet. |
| URL | http://localhost/vendor.js |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | query |
| Other Info | The following pattern was used: \bQUERY\b and was detected in the element starting with: "(self.webpackChunkfrontend=self.webpackChunkfrontend||[]).push([[736],{9187:(At,ae,d)=>{"use strict";d.d(ae,{Xy:()=>J,ne:()=>Be,", see evidence field for the suspicious comment/snippet. |
| URL | http://localhost:3000/vendor.js |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | query |
| Other Info | The following pattern was used: \bQUERY\b and was detected in the element starting with: "(self.webpackChunkfrontend=self.webpackChunkfrontend||[]).push([[736],{9187:(At,ae,d)=>{"use strict";d.d(ae,{Xy:()=>J,ne:()=>Be,", see evidence field for the suspicious comment/snippet. |
| Instances | 3 |
| Solution |
Remove all comments that return information that may help an attacker and fix any underlying problems they refer to.
|
| Reference | |
| CWE Id | 200 |
| WASC Id | 13 |
| Plugin Id | 10027 |
|
Informational |
Modern Web Application |
|---|---|
| Description |
The application appears to be a modern web application. If you need to explore it automatically then the Ajax Spider may well be more effective than the standard one.
|
| URL | http://localhost |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost/ |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost/sitemap.xml |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| Instances | 3 |
| Solution |
This is an informational alert and so no changes are required.
|
| Reference | |
| CWE Id | |
| WASC Id | |
| Plugin Id | 10109 |
|
Informational |
Storable and Cacheable Content |
|---|---|
| Description |
The response contents are storable by caching components such as proxy servers, and may be retrieved directly from the cache, rather than from the origin server by the caching servers, in response to similar requests from other users. If the response data is sensitive, personal or user-specific, this may result in sensitive information being leaked. In some cases, this may even result in a user gaining complete control of the session of another user, depending on the configuration of the caching components in use in their environment. This is primarily an issue where "shared" caching servers such as "proxy" caches are configured on the local network. This configuration is typically found in corporate or educational environments, for instance.
|
| URL | http://localhost/api/Challenges/?name=Score%20Board |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/api/Quantitys/ |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/rest/admin/application-configuration |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/rest/admin/application-version |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/rest/captcha/ |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/rest/languages |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/rest/products/search?q= |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/rest/user/whoami |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/robots.txt |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt2sq |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt2zr&sid=_HTNywfDgF4DlKk7AABd |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt3AK |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt3Ar&sid=8iKQl3-XbwQ8Q7H6AABe |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt3ji |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt3Oj |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt3tN&sid=se16NWe1d-Z-fjkgAABh |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt4Ka |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt4LF&sid=hsklRPecaE59c2Y9AABj |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt4me |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt5D1 |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt5N1 |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt5ns |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt67V |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt689 |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt68z&sid=tx1rkX9aOjqRN9RWAABp |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt6_E |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt6_v&sid=07vWUEAMA-Br7bLzAABv |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt6d1 |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt6dQ&sid=5cfhwLMbu0yP0A1zAABs |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt6G7&sid=L25QmBGhVTg2EjtDAABo |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt6mZ |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt6rW |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt6SY |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt6U6&sid=qJdXNKtoYsT0QAjiAABq |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt7AD |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt7aI |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt7at&sid=GBXpm5ZcdmHSLz9AAAB2 |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt7Bn |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt7Bw&sid=5zCBYeLCwP-WSoh8AABx |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt7DM&sid=22T5wyWQI4-Jf-0DAABy |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt7hN&sid=kA3nvrLSojIIGG9eAAB1 |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt7k2 |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt7LO |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt7MR&sid=_DEdckY6De2Hj83LAABz |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt7QJ |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt7qw |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt7R7&sid=W1MAYSKN8ZYzWRDuAAB0 |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt7rz&sid=fr1eMQu4_I3Cfv6jAAB4 |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt7UF |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt80P |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt83h |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt8_o&sid=vw-C-E1pQAZSuyPdAACD |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt8Ad |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt8DP |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt8KO |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt8nT |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt8o_ |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt8PX |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt8ry |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt8YV |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt8Z7&sid=ie4oi9cRmUMGm2p-AACA |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt8zw&sid=SjmPYzHU6Xpdw44FAACE |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt9-g&sid=DP4c-Gohz_Q5sQvBAACO |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt95t |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt9aF |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt9bH&sid=sKgT6e-dqTkx7FquAACJ |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt9CD |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt9cy |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt9E4&sid=KIUZT_JukxaSTcbgAACG |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt9eK&sid=Wpkpb0DVNRPLb0scAACK |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt9g4 |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt9kl |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt9of |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt9PM |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt9Q7&sid=iFG_Zqg9N3wiFB1fAACI |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-nt9zk |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntA0x |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntA1_&sid=uK0G6ecpQZNOldVDAACP |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntA6C |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntA_U |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntA_v |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntAIx |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntAKI&sid=tF-LYrUliiO5YGPvAACS |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntAm2 |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntANv |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntAU6 |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntAv3 |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntAwA |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntAWQ |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntAXC |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntB-h |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntB6_ |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntBcf |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntBdS&sid=5ZJhtSnfEiVMIvVFAACh |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntBFe |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntBgN |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntBJ_&sid=JufnpKwhDhVpw3QRAACe |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntBJk&sid=7FgVnDeZu0hQwVoMAACd |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntBJQ |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntBP5 |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntBPo |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntBt_ |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntBur |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntBYf&sid=II7w5nmEN6QQtOzOAACf |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntC2X&sid=OlQ8KG_IEnx4NEyEAACk |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntC3H |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntC7r&sid=o99iN8uBX15nRWd0AACm |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntCab |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntCbV&sid=_LIPnxa6-to8dUvQAACr |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntClR&sid=Imov9sH1JCKzoJpjAACp |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntCNg |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntCnn&sid=hXxRZyO6LSFL0otgAACo |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntCpc |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntCPO&sid=HrWhnEpTDsaCSyc2AACn |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntCQ_ |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntCr- |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntCT3 |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntCtd&sid=Zzjug_jC4JPpkVYXAACu |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntCU8 |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntCUq&sid=oH62Zwq7wXsRRX9jAACq |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntCxJ&sid=QW-JyI3LFRKauyXOAACs |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntD6G |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntD7F&sid=QZU863yKSyWEJKxWAACv |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDAQ |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDCy |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDDy |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDG5 |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDJV |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDKI&sid=dn-GI2MZf-kG21zeAAC0 |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDkw |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDlC |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDmd&sid=0T9_0tZfq6l2r5b1AAC6 |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDqk |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDTf |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDVe |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDVX |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDw- |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDwq&sid=5dJ1_h9smuyKfbCIAAC8 |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDWR&sid=IZZRXJVQap-LALXeAAC2 |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDxl&sid=rIjSubDWzZWrcppkAAC9 |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDyc |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntDZx |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntE0k&sid=rukIn_zaUEKrhnQAAAC7 |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntE8a |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntE9n&sid=n-LVoQZxmi8S_rUNAADA |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntEB4 |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntEbw |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntECe&sid=Stz2m9fjNo7I5bPuAADB |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntED-&sid=hAgNhwCv7YfjDEEJAAC- |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntEf-&sid=IHwRTU8zS_i5YgKAAADE |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntEhX |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntEJt |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntELL&sid=p4AJx2FdUhzJjdG_AADC |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntELp |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntEm7 |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntEmz |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntEoQ&sid=kX2BlnkBsFI76Ck2AADK |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntEPc |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntEQE |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntES7&sid=gahLTKtoUH0obLoHAADF |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntEuH&sid=F1D2pJ_br01gwKAXAADH |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntEwt&sid=3PZ90-MfaD3EMP48AADG |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntEXl&sid=KrsDcG9iH7BuofORAADD |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntEyo |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntEzT&sid=5vWezKs8R5FndQlNAADL |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntF5v |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntF6K&sid=wsodaGnPKhetsOfoAADM |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntF8h |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFAR |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFco |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFfP&sid=u81s8PMhfl2fB3WmAADV |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFhO |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFij&sid=BlVT8bo5R_5iIKl7AADW |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFJs |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFmW |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFmZ |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFoE&sid=yGF-oaRgS7pKT4csAADX |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFPe |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFQc |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFQd |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFR7&sid=ll3UVNDqCUR-2OTnAADP |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFrv |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFsi |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFtv |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFUU |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFWF&sid=u90Fs8ypkMnOcN-UAADT |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntFwU |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntG1F |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntG2v&sid=b2OR9gjAgLqyliooAADa |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntG6O |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntG6q&sid=6T1RYL3byXFh9w0pAADd |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntG79&sid=-t1HiYz9TNWZfd58AADe |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntGB4 |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntGC6&sid=84_tmChOFTwS1nzgAADf |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntGDl&sid=9DpU1BxJIUpvnNXkAADc |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntGET |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntGIl |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntGKT&sid=L8-H8UMLqSOtBuQYAADi |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntGlw |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntGmn&sid=VGfCcTvTfBTIKS5IAADl |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntGnS |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntGqB |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntGQs |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntGRy&sid=TGH7ZjpaDy5IpZGGAADg |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntGSB&sid=awOVEbtHjOkiOZkgAADj |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntGVT |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntGxE |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntGyN |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntH0f |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntH3Z |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntH89 |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntHdP |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntHeo&sid=PrgXBqJvSMyNNGwUAADx |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntHFC&sid=mnXGbOuUIbg28MtYAADq |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntHg4 |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntHI4&sid=p-qxLexhJuyYre-RAADp |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntHix |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntHiY&sid=vAAy90kHHk2eIZ6DAADy |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntHJm |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntHKs&sid=0Xo7FT8rLGmQ8fy3AADr |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntHr_&sid=v5dDK9LGCzjHbE-hAADv |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntHsp&sid=4oQA0Z3NHVv_J5CzAADw |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntHtV |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntHux&sid=aap6vsthw6d6-b4XAAD0 |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntHXc |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntHZU |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntI-F |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntI-U |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntI4K |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntI54 |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntI6F&sid=h5N71L3cuWmkN-yxAAD1 |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntI6X&sid=bU8Ign3oSoY32HmzAAD2 |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntI7L |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntI8q |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntI_8&sid=bN4hIaCo8kOzdAs4AAEF |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntICZ |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntIeM |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntIiI |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntIjc&sid=HQeWubztd7HUTYg_AAEB |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntIjR |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntImn |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntIMO |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntINL&sid=rrX8OrbUJLfWEFYgAAD6 |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntInr |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntInY&sid=MPq7DTmSHQGhyfbPAAD_ |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntIoU&sid=x6-iUAYZiKbpZsxYAAEE |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntIqs&sid=4NqYYq1R4z5pUvYfAAEA |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntIS9 |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntISx |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntITE |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntIVs |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntIX2 |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntIXI&sid=pvx6fpihHUPBk3DrAAD- |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntIxq&sid=SBiEhDN09rORwlxwAAED |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJ5i |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJ6g&sid=vshEGg1B1iIT5an-AAEI |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJ7s |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJ_7 |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJBq |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJcF |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJCH&sid=C-SFY6gg3p2-RpABAAEG |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJdb&sid=oNf7M70Jay9zk-auAAET |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJDJ |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJE5&sid=-5hB1duDh7dUVSbxAAEK |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJHW |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJII&sid=acSCLAqrcyLoNWjeAAEM |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJIK |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJJD&sid=DAm6VHoQgG9r4rydAAEN |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJM5 |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJmC |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJNJ |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJow |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJqU&sid=6nIvTmIBq2KJQSCNAAEV |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJSe |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJUg&sid=Tpcb5_mTlNkhKTZxAAEO |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJUi |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJW4 |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJx5 |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJxZ |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJyF&sid=AdbyMTr_K3f1mvLQAAEX |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntJZ7&sid=nshVUAtZn5Quca8OAAEQ |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntK0M |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntK0O |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntK0Q&sid=un3gj4Yaq1gAk0-XAAEW |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntK1n&sid=EKSF6isNIWF4qEr3AAEa |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntK4J |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntKBJ |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntKCC&sid=pinN-Tk8XZz7fk6vAAEe |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntKce |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntKeE |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntKFg |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntKFx&sid=VBG9HBNknYV_KTqcAAEZ |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntKiY&sid=J3aCjPiTMiHUJWy9AAEg |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntKIz |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntKnM&sid=lp91BNQi2FBKdcbsAAEi |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntKOY |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntKPR&sid=dgRAaZ4igbAPImksAAEf |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntKS1 |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntKVh |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntKwm |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntL0O |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntLBn |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| Instances | 302 |
| Solution |
Validate that the response does not contain sensitive, personal or user-specific information. If it does, consider the use of the following HTTP response headers, to limit, or prevent the content being stored and retrieved from the cache by another user:
Cache-Control: no-cache, no-store, must-revalidate, private
Pragma: no-cache
Expires: 0
This configuration directs both HTTP 1.0 and HTTP 1.1 compliant caching servers to not store the response, and to not retrieve the response (without validation) from the cache, in response to a similar request.
|
| Reference |
https://datatracker.ietf.org/doc/html/rfc7234
https://datatracker.ietf.org/doc/html/rfc7231 https://www.w3.org/Protocols/rfc2616/rfc2616-sec13.html |
| CWE Id | 524 |
| WASC Id | 13 |
| Plugin Id | 10049 |
|
Informational |
Storable but Non-Cacheable Content |
|---|---|
| Description |
The response contents are storable by caching components such as proxy servers, but will not be retrieved directly from the cache, without validating the request upstream, in response to similar requests from other users.
|
| URL | http://localhost |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | max-age=0 |
| Other Info | |
| URL | http://localhost/ |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | max-age=0 |
| Other Info | |
| URL | http://localhost/assets/i18n/en.json |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | max-age=0 |
| Other Info | |
| URL | http://localhost/assets/public/favicon_js.ico |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | max-age=0 |
| Other Info | |
| URL | http://localhost/assets/public/images/hackingInstructor.png |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | max-age=0 |
| Other Info | |
| URL | http://localhost/assets/public/images/JuiceShop_Logo.png |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | max-age=0 |
| Other Info | |
| URL | http://localhost/assets/public/images/products/apple_juice.jpg |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | max-age=0 |
| Other Info | |
| URL | http://localhost/assets/public/images/products/apple_pressings.jpg |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | max-age=0 |
| Other Info | |
| URL | http://localhost/assets/public/images/products/artwork2.jpg |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | max-age=0 |
| Other Info | |
| URL | http://localhost/assets/public/images/products/banana_juice.jpg |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | max-age=0 |
| Other Info | |
| URL | http://localhost/assets/public/images/products/carrot_juice.jpeg |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | max-age=0 |
| Other Info | |
| URL | http://localhost/assets/public/images/products/eggfruit_juice.jpg |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | max-age=0 |
| Other Info | |
| URL | http://localhost/assets/public/images/products/fan_facemask.jpg |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | max-age=0 |
| Other Info | |
| URL | http://localhost/assets/public/images/products/fruit_press.jpg |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | max-age=0 |
| Other Info | |
| URL | http://localhost/assets/public/images/products/green_smoothie.jpg |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | max-age=0 |
| Other Info | |
| URL | http://localhost/assets/public/images/products/lemon_juice.jpg |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | max-age=0 |
| Other Info | |
| URL | http://localhost/assets/public/images/products/melon_bike.jpeg |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | max-age=0 |
| Other Info | |
| URL | http://localhost/assets/public/images/products/permafrost.jpg |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | max-age=0 |
| Other Info | |
| URL | http://localhost/font-mfizz.woff |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | max-age=0 |
| Other Info | |
| URL | http://localhost/main.js |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | max-age=0 |
| Other Info | |
| URL | http://localhost/MaterialIcons-Regular.woff2 |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | max-age=0 |
| Other Info | |
| URL | http://localhost/polyfills.js |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | max-age=0 |
| Other Info | |
| URL | http://localhost/runtime.js |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | max-age=0 |
| Other Info | |
| URL | http://localhost/sitemap.xml |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | max-age=0 |
| Other Info | |
| URL | http://localhost/styles.css |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | max-age=0 |
| Other Info | |
| URL | http://localhost/vendor.js |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | max-age=0 |
| Other Info | |
| URL | http://localhost:3000/vendor.js |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | max-age=0 |
| Other Info | |
| Instances | 27 |
| Solution | |
| Reference |
https://datatracker.ietf.org/doc/html/rfc7234
https://datatracker.ietf.org/doc/html/rfc7231 https://www.w3.org/Protocols/rfc2616/rfc2616-sec13.html |
| CWE Id | 524 |
| WASC Id | 13 |
| Plugin Id | 10049 |
|
Informational |
Trace.axd Information Leak |
|---|---|
| Description |
The ASP.NET Trace Viewer (trace.axd) was found to be available. This component can leak a significant amount of valuable information.
|
| URL | http://localhost:3000/ftp/trace.axd |
| Method | GET |
| Parameter | |
| Attack | |
| Evidence | HTTP/1.1 403 Forbidden |
| Other Info | Based on response status code Trace Viewer may be protected by an authentication or authorization mechanism. |
| Instances | 1 |
| Solution |
Consider whether or not Trace Viewer is actually required in production, if it isn't then disable it. If it is then ensure access to it requires authentication and authorization.
|
| Reference |
https://msdn.microsoft.com/en-us/library/bb386420.aspx
https://msdn.microsoft.com/en-us/library/wwh16c6c.aspx https://www.dotnetperls.com/trace |
| CWE Id | 215 |
| WASC Id | 13 |
| Plugin Id | 40029 |
|
Informational |
User Agent Fuzzer |
|---|---|
| Description |
Check for differences in response based on fuzzed User Agent (eg. mobile sites, access as a Search Engine Crawler). Compares the response statuscode and the hashcode of the response body with the original response.
|
| URL | http://localhost/assets |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1) |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1) |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0 |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0 |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4 |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16 |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | msnbot/1.1 (+http://search.msn.com/msnbot.htm) |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/i18n |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1) |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/i18n |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/i18n |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1) |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/i18n |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/i18n |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0 |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/i18n |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/i18n |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0 |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/i18n |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/i18n |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/i18n |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4 |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/i18n |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16 |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/i18n |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | msnbot/1.1 (+http://search.msn.com/msnbot.htm) |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/public |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1) |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/public |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/public |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1) |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/public |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/public |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0 |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/public |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/public |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0 |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/public |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/public |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/public |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4 |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/public |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16 |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/public |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | msnbot/1.1 (+http://search.msn.com/msnbot.htm) |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/public/images |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1) |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/public/images |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/public/images |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1) |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/public/images |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/public/images |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0 |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/public/images |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/public/images |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0 |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/public/images |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/public/images |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/public/images |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4 |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/public/images |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16 |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/public/images |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | msnbot/1.1 (+http://search.msn.com/msnbot.htm) |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/public/images/products |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1) |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/public/images/products |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/public/images/products |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1) |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/public/images/products |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/public/images/products |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0 |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/public/images/products |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/public/images/products |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0 |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/public/images/products |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/public/images/products |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/public/images/products |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4 |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/public/images/products |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16 |
| Evidence | |
| Other Info | |
| URL | http://localhost/assets/public/images/products |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | msnbot/1.1 (+http://search.msn.com/msnbot.htm) |
| Evidence | |
| Other Info | |
| URL | http://localhost/rest/captcha |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1) |
| Evidence | |
| Other Info | |
| URL | http://localhost/rest/captcha |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) |
| Evidence | |
| Other Info | |
| URL | http://localhost/rest/captcha |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1) |
| Evidence | |
| Other Info | |
| URL | http://localhost/rest/captcha |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko |
| Evidence | |
| Other Info | |
| URL | http://localhost/rest/captcha |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0 |
| Evidence | |
| Other Info | |
| URL | http://localhost/rest/captcha |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 |
| Evidence | |
| Other Info | |
| URL | http://localhost/rest/captcha |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0 |
| Evidence | |
| Other Info | |
| URL | http://localhost/rest/captcha |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) |
| Evidence | |
| Other Info | |
| URL | http://localhost/rest/captcha |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) |
| Evidence | |
| Other Info | |
| URL | http://localhost/rest/captcha |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4 |
| Evidence | |
| Other Info | |
| URL | http://localhost/rest/captcha |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16 |
| Evidence | |
| Other Info | |
| URL | http://localhost/rest/captcha |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | msnbot/1.1 (+http://search.msn.com/msnbot.htm) |
| Evidence | |
| Other Info | |
| URL | http://localhost/rest/captcha/ |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1) |
| Evidence | |
| Other Info | |
| URL | http://localhost/rest/captcha/ |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) |
| Evidence | |
| Other Info | |
| URL | http://localhost/rest/captcha/ |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1) |
| Evidence | |
| Other Info | |
| URL | http://localhost/rest/captcha/ |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko |
| Evidence | |
| Other Info | |
| URL | http://localhost/rest/captcha/ |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0 |
| Evidence | |
| Other Info | |
| URL | http://localhost/rest/captcha/ |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 |
| Evidence | |
| Other Info | |
| URL | http://localhost/rest/captcha/ |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0 |
| Evidence | |
| Other Info | |
| URL | http://localhost/rest/captcha/ |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) |
| Evidence | |
| Other Info | |
| URL | http://localhost/rest/captcha/ |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) |
| Evidence | |
| Other Info | |
| URL | http://localhost/rest/captcha/ |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4 |
| Evidence | |
| Other Info | |
| URL | http://localhost/rest/captcha/ |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16 |
| Evidence | |
| Other Info | |
| URL | http://localhost/rest/captcha/ |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | msnbot/1.1 (+http://search.msn.com/msnbot.htm) |
| Evidence | |
| Other Info | |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntKnM&sid=lp91BNQi2FBKdcbsAAEi |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1) |
| Evidence | |
| Other Info | |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntKnM&sid=lp91BNQi2FBKdcbsAAEi |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) |
| Evidence | |
| Other Info | |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntKnM&sid=lp91BNQi2FBKdcbsAAEi |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1) |
| Evidence | |
| Other Info | |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntKnM&sid=lp91BNQi2FBKdcbsAAEi |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko |
| Evidence | |
| Other Info | |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntKnM&sid=lp91BNQi2FBKdcbsAAEi |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0 |
| Evidence | |
| Other Info | |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntKnM&sid=lp91BNQi2FBKdcbsAAEi |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 |
| Evidence | |
| Other Info | |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntKnM&sid=lp91BNQi2FBKdcbsAAEi |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0 |
| Evidence | |
| Other Info | |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntKnM&sid=lp91BNQi2FBKdcbsAAEi |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) |
| Evidence | |
| Other Info | |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntKnM&sid=lp91BNQi2FBKdcbsAAEi |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) |
| Evidence | |
| Other Info | |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntKnM&sid=lp91BNQi2FBKdcbsAAEi |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4 |
| Evidence | |
| Other Info | |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntKnM&sid=lp91BNQi2FBKdcbsAAEi |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16 |
| Evidence | |
| Other Info | |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntKnM&sid=lp91BNQi2FBKdcbsAAEi |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | msnbot/1.1 (+http://search.msn.com/msnbot.htm) |
| Evidence | |
| Other Info | |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntLBn |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1) |
| Evidence | |
| Other Info | |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntLBn |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) |
| Evidence | |
| Other Info | |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntLBn |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1) |
| Evidence | |
| Other Info | |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntLBn |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko |
| Evidence | |
| Other Info | |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntLBn |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0 |
| Evidence | |
| Other Info | |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntLBn |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 |
| Evidence | |
| Other Info | |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntLBn |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0 |
| Evidence | |
| Other Info | |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntLBn |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) |
| Evidence | |
| Other Info | |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntLBn |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) |
| Evidence | |
| Other Info | |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntLBn |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4 |
| Evidence | |
| Other Info | |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntLBn |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16 |
| Evidence | |
| Other Info | |
| URL | http://localhost/socket.io/?EIO=4&transport=polling&t=O-ntLBn |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | msnbot/1.1 (+http://search.msn.com/msnbot.htm) |
| Evidence | |
| Other Info | |
| URL | http://localhost/socket.io/?EIO=4&transport=websocket&sid=_HTNywfDgF4DlKk7AABd |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1) |
| Evidence | |
| Other Info | |
| URL | http://localhost/socket.io/?EIO=4&transport=websocket&sid=_HTNywfDgF4DlKk7AABd |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) |
| Evidence | |
| Other Info | |
| URL | http://localhost/socket.io/?EIO=4&transport=websocket&sid=_HTNywfDgF4DlKk7AABd |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1) |
| Evidence | |
| Other Info | |
| URL | http://localhost/socket.io/?EIO=4&transport=websocket&sid=_HTNywfDgF4DlKk7AABd |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko |
| Evidence | |
| Other Info | |
| URL | http://localhost/socket.io/?EIO=4&transport=websocket&sid=_HTNywfDgF4DlKk7AABd |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0 |
| Evidence | |
| Other Info | |
| URL | http://localhost/socket.io/?EIO=4&transport=websocket&sid=_HTNywfDgF4DlKk7AABd |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 |
| Evidence | |
| Other Info | |
| URL | http://localhost/socket.io/?EIO=4&transport=websocket&sid=_HTNywfDgF4DlKk7AABd |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0 |
| Evidence | |
| Other Info | |
| URL | http://localhost/socket.io/?EIO=4&transport=websocket&sid=_HTNywfDgF4DlKk7AABd |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) |
| Evidence | |
| Other Info | |
| URL | http://localhost/socket.io/?EIO=4&transport=websocket&sid=_HTNywfDgF4DlKk7AABd |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) |
| Evidence | |
| Other Info | |
| URL | http://localhost/socket.io/?EIO=4&transport=websocket&sid=_HTNywfDgF4DlKk7AABd |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4 |
| Evidence | |
| Other Info | |
| URL | http://localhost/socket.io/?EIO=4&transport=websocket&sid=_HTNywfDgF4DlKk7AABd |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16 |
| Evidence | |
| Other Info | |
| URL | http://localhost/socket.io/?EIO=4&transport=websocket&sid=_HTNywfDgF4DlKk7AABd |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | msnbot/1.1 (+http://search.msn.com/msnbot.htm) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | msnbot/1.1 (+http://search.msn.com/msnbot.htm) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/public |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/public |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/public |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/public |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/public |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/public |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/public |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/public |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/public |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/public |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/public |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/public |
| Method | GET |
| Parameter | Header User-Agent |
| Attack | msnbot/1.1 (+http://search.msn.com/msnbot.htm) |
| Evidence | |
| Other Info | |
| Instances | 144 |
| Solution | |
| Reference | https://owasp.org/wstg |
| CWE Id | |
| WASC Id | |
| Plugin Id | 10104 |